Notice: These forums are now retired and closed. For active support, please Submit a Ticket or visit our official WordPress.org community pages.
Kadence Theme | Kadence Blocks | Starter Templates | WooCommerce Email Designer | Ascend | Virtue | Pinnacle

Search Results for 'Page'

Home / Forums / Search / Search Results for 'Page'

Viewing 20 results - 33,201 through 33,220 (of 53,646 total)
  • Author
    Search Results
  • #96385

    Hi,

    Our website bassman-blaine.com is having issues with the portfolio pages. For some reason, all of the sudden, the portfolio pages not working. There is a “Not Found” error when you click on them.

    PLEASE HELP!

    Cat

    In forum: Virtue Theme

    In reply to: Nothing shown

    #96383

    ok, So I’m out of guessing? I can’t recreate unless I use Edge browser then I see the security error but only on your site not on the demo not anywhere else. It’s not related to the content of the page because you can have an empty page and still see the security error. It’s not related to plugins because you can deactivate them all.

    I can only guess that there is something in the htaccess file or something in the permissions of the theme folders that is somehow tripping the edge browser but based on the oddness of this I wouldn’t be surprised if it’s a random bug in the edge browser itself.

    At this point for me to test any further I would need ftp access to the site.

    Ben

    #96378

    Awesome…really appreciate you fixing that for me : )

    Is there any way to make this same category page a little wider (or expand padding) to fit the text in better (one line rather than two?)
    Thanks so much Ben!

    #96377

    It’s not the choose a sidebar option that is only if you have the sidebar enabled.

    I am refering to the very first options : “Display a sidebar on the Home Page?”

    You need to click on the image with the sidebar.

    Ben

    In forum: Virtue Theme

    In reply to: Icon Menu into a Page

    #96365

    Using page builder, you can add a “Virtue: Icon Flip Box” for a similar effect. You’ll want to create a new row, set it to 4 column, and add an Icon Flip Box to each column of the row. It’s not going to be exactly like the home icon menu, but it will be very close.

    Give that a try and let me know if that works for you!

    #96361

    Hi,
    Is it possible to add an Icon Menu into a Page instead of at the home page?
    Thank you

    #96359

    Hey Kathy,
    What values do you mean? Are you referring to the portfolio grid page or the portfolio post? Can you post a link?
    Thanks!

    Hannah

    #96351

    Hi,

    Is there a way I can move the Value options above the text/description on the portfolio page?

    #96343

    yes,
    theme options > home layout > choose a sidebar for your home page > (selected) primary Sidebar

    In page editor (home page)
    Page attributes > template > (selected) feature-sidebar
    sidebar options > (selected) primary Sidebar

    But still cannot see the widget on home page

    #96339
    This reply has been marked as private.
    In forum: Pinnacle Theme
    #96338

    The code is there for them inside the theme. What version of WPML string translation are you using?

    Have you tried running a refresh for the strings.

    You could approach this differently using the custom carousel shortcodes then having two different shortcode setups per language in your page content.

    Ben

    #96337

    Did you mean this to be input in the custom css box on the advanced settings page? Or the css attributes for the image on the page editor? On the latter it does nothing and actually ends up displaying both images.

    Also, does this need to be targeting the class .so-widget-image?

    Apologize for all the questions, I’m new to this whole css thing.

    #96330

    ok, for the sidebar gallery add this css:

    .sidebar .kad-wp-gallery .g_item {
        width: 33.33%;
        float: left;
    }
    

    For the home page. In your theme options > home layout. Do you have the sidebar enabled?

    Ben

    #96319
    This reply has been marked as private.
    #96315

    Yoast shows on every post type. It’s not post specific options.

    Are you sure you need to create a custom post type to have a seperate category in your blog? You can have seperate pages that only show posts of a certain category.

    Blog posts options are post type specific and you can’t create a new post type and assume they would take on the role of blog posts. They won’t in many ways including permalinks and archive options. so for what your wanting to do you would have to create post type specific options that saved meta content…

    For example of how you can hook into the metabox platform through a child theme:

    add_filter( 'cmb_meta_boxes', 'kt_custom_metaboxes' );
    
    function kt_custom_metaboxes( array $meta_boxes ) {
    
    	$prefix = '_kad_';
    
    	$meta_boxes[] = array(
    				'id'         => 'standard_post_metabox',
    				'title'      => __("Standard Post Options", 'virtue'),
    				'pages'      => array( 'post'), // Post type
    				'context'    => 'normal',
    				'priority'   => 'high',
    				'show_names' => true,
    				'fields' => array(
    			
    			array(
    				'name'    => __("Head Content", 'virtue' ),
    				'desc'    => '',
    				'id'      => $prefix . 'blog_head',
    				'type'    => 'select',
    				'options' => array(
    					array( 'name' => __('Site Default', 'virtue' ), 'value' => 'default', ),
    					array( 'name' => __("None", 'virtue' ), 'value' => 'none', ),
    					array( 'name' => __("Image Slider (Flex Slider)", 'virtue' ), 'value' => 'flex', ),
    					array( 'name' => __("Carousel Slider - (Caroufedsel Slider)", 'virtue' ), 'value' => 'carouselslider', ),
    					array( 'name' => __("Image Carousel", 'virtue' ), 'value' => 'carousel', ),
    					array( 'name' => __("Video", 'virtue' ), 'value' => 'video', ),
    					array( 'name' => __("Image", 'virtue' ), 'value' => 'image', ),
    					array( 'name' => __("Shortcode", 'virtue' ), 'value' => 'shortcode', ),
    				),
    			),
    			array(
    				'name' => __("Max Image/Slider Height", 'virtue' ),
    				'desc' => __("Default is: 400 (Note: just input number, example: 350)", 'virtue' ),
    				'id'   => $prefix . 'posthead_height',
    				'type' => 'text_small',
    			),
    			array(
    				'name' => __("Max Image/Slider Width", 'virtue' ),
    				'desc' => __("Default is: 770 or 1140 on fullwidth posts (Note: just input number, example: 650, does not apply to carousel slider)", 'virtue' ),
    				'id'   => $prefix . 'posthead_width',
    				'type' => 'text_small',
    			),
    			array(
    				'name'    => __("Post Summary", 'virtue' ),
    				'desc'    => '',
    				'id'      => $prefix . 'post_summery',
    				'type'    => 'select',
    				'options' => array(
    					array( 'name' => __('Site Default', 'virtue' ), 'value' => 'default', ),
    					array( 'name' => __('Text', 'virtue' ), 'value' => 'text', ),
    					array( 'name' => __('Portrait Image', 'virtue'), 'value' => 'img_portrait', ),
    					array( 'name' => __('Landscape Image', 'virtue'), 'value' => 'img_landscape', ),
    					array( 'name' => __('Portrait Image Slider', 'virtue'), 'value' => 'slider_portrait', ),
    					array( 'name' => __('Landscape Image Slider', 'virtue'), 'value' => 'slider_landscape', ),
    					array( 'name' => __('Video', 'virtue'), 'value' => 'video', ),
    				),
    			),
    			array(
    						'name' => __('If Video Post', 'virtue'),
    						'desc' => __('Place Embed Code Here, works with youtube, vimeo...', 'virtue'),
    						'id'   => $prefix . 'post_video',
    						'type' => 'textarea_code',
    			),
    			array(
    						'name' => __('If Shortcode Head Content', 'virtue'),
    						'desc' => __('Place Shortcode Here', 'virtue'),
    						'id'   => $prefix . 'post_shortcode',
    						'type' => 'textarea_code',
    			),
    		),
    	);
    return $meta_boxes;
    }

    You would have to change “post” to the post type slug of whatever post they you created in the posts types area for the meta “pages” array.

    Ben

    #96298

    Hey,
    You can do with this css. Please open the page or provide the password and I can help you with that.

    Ben

    In forum: Virtue Theme
    #96293

    Hi Ben/Hannah,

    I have recently changed the look of my product pages by shortening the short descriptions so that they are incorporated on the shop/product category page. This seems to have decreased the number of calls to my company because we have taken out “Call now for best prices” at the top of the page (This was previously a H4 in the short description). Please see an example of how it looks now here

    I would like to get a header near the top of the product page (maybe under the product title) to incorporate “Call now for best prices”. Is there a way of doing this so that it doesn’t show in the product category pages?

    Thanks Again,
    Paul

    #96279

    Site is nearing completion, began to look at the mobile versions, and having issues with viewing on a mobile screen (Site not resizing appropriately).
    Probably due to increasing max width of container in custom css.

    Site; http://www.ihealthup.com

    Custom CSS below, if anything needs to be removed or is not necessary please let me know.

    .page-header {
    display: none;
    }
    .container {
    width: 1400px;
    }
    .footerclass h3 {
    font-size: 14px;
    color: #000000;
    }
    .topbarmenu ul li a {
    font-size: 14px;
    }
    .footerclass ul li a {
    font-size: 14px;
    }

    Thanks, Igor

    #96278

    Here is a concept page slider I am working on:

    https://whiskermen.com/conceptpage/

    How can we increase the space between the primary and secondary buttons?

    Thanks,
    Chris.

    In forum: Virtue Theme
    #96273

    You can still keep what you have enabled in the homepage layout manager (theme options > home layout). The static page content can be added to the page by enabling Page Content in the homepage layout manager.

    Hannah

Viewing 20 results - 33,201 through 33,220 (of 53,646 total)