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 'sidebar'

Home / Forums / Search / Search Results for 'sidebar'

Viewing 20 results - 1,321 through 1,340 (of 5,356 total)
  • Author
    Search Results
  • #208304

    Without a link it’s hard to know what you are doing it sounds like you want the image menu to have a max width. Please try adding this css:

    .sidebar .infobanner {
        max-width: 300px;
    }

    Ben

    In forum: Virtue Theme
    #208191

    Hey, the WordPress widget doesn’t have a dropdown it’s a list menu meant for a sidebar were all items show. It’s not like the navigation you would have in your site header.

    Ben

    In forum: Ascend Theme

    In reply to: /Shop page

    #208106

    In Theme Options > Home Page Layout set “Display a sidebar on the Home Page?” to On. Does that do it?

    Hannah

    In forum: Ascend Theme

    In reply to: /Shop page

    #208103

    Thats ok. It is set to the Sidebar layout.

    In forum: Ascend Theme

    In reply to: /Shop page

    #208011

    Hey,
    In Theme Options > Shop Settings do you have “Display the sidebar on Shop Page?” turned on?

    Hannah

    In forum: Virtue Theme
    #208003

    I’m not sure what you mean about the menu, are you trying to change the font in the theme options? Or what menu is this for?

    As for the fullwidth are you setting the content to full width in the page settings? This is different than setting the template to fullwidth(no sidebar).

    Ben

    #207778

    Looks like you’re setting your sidebar width to 30%, but your content with is set to 75%. This css should fix it:

    @media (min-width: 992px) {
    .main.col-lg-9.col-md-8.postlist {
        width: 70%;
    }
    }

    Hope that helps!

    Hannah

    #207717

    This will hide the area on your home page in mobile:

    @media (max-width: 992px) {
    #panel-7-2-0-0> .panel-widget-style {
        display: none;
        }
    }

    For the footer, it might be best to configure it in page builder if you’re wanting to change it in mobile. There isn’t much you can do by default aside from hiding some elements with CSS.

    What pages have a sidebar? You should be able to hide it with this CSS:

    @media (max-width: 992px) {
    .sidebar {
    display: none;
        }
    }

    -Kevin

    #207716

    Also is there a way to HIDE the SIDEBAR from Mobile view?

    Thank you!

    In forum: Virtue Theme
    #207228

    I don’t know where to put it with the rest of the code. BTW, this code is placed within a text widget on sidebar.

    #207094
    This reply has been marked as private.
    In forum: Virtue Theme

    In reply to: Sidebar Options

    #206901
    function custom_hide_sidebar_meta_setting( $display, $meta_box ) {
    	if ( isset( $meta_box['id'] ) && 'post_sidebar_metabox' == $meta_box['id'] ) {
    		return false;
    	} else {
    		return $display;
    	}
    }
    add_filter( 'cmb2_show_on', 'custom_hide_sidebar_meta_setting', 10, 2 );

    Try adding that function.

    Ben

    #206900

    I just updated to this:

    function custom_show_sidebar_meta_only_admin( $display, $meta_box ) {
    	if ( isset( $meta_box['id'] ) && ( 'product_post_side_metabox' == $meta_box['id'] || 'default_page_sidebar' == $meta_box['id'] || 'post_sidebar_metabox' == $meta_box['id'] ) ) {
    		return current_user_can( 'manage_options' );
    	} else {
    		return $display;
    	}
    }
    add_filter( 'cmb2_show_on', 'custom_show_sidebar_meta_only_admin', 10, 2 );

    Let me know if you still see it on a vendor.

    Ben

    #206823

    see all replys of topic
    ok i am giving all info
    1st i share problem see 1st screenshot – https://i.postimg.cc/Fs6r9jR6/Screenshot-1.png

    then you provide this code to add child theme’s functions.php

    function custom_show_sidebar_meta_only_admin( $display, $meta_box ) {
    	if ( isset( $meta_box['id'] ) && ( 'product_post_side_metabox' == $meta_box['id'] || 'default_page_sidebar'  == $meta_box['id'] )  ) {
    		return current_user_can( 'manage_options' );
    	} else {
    		return true;
    	}
    }
    add_filter( 'cmb2_show_on', 'custom_show_sidebar_meta_only_admin', 10, 2 );

    but after add this code problem not solve then you did it manually.
    screenshot 2 – https://i.postimg.cc/4NpGTjDY/Screenshot-2.png

    #206812

    I was give topic link in previous reply.

    this is link – Previous Topic

    #206780

    Hello, I am working on a travel agency site. For each individual tour page, I would like to have navigation that is site-wide, like the topnav, sidebar, etc. But then I also need page-specific navigation that shows different kinds of information about each specific tour.

    Something like this:

    Here is my site: http://www.johngrahamtours.com/ancient-christianity

    Thanks, John

    In forum: Virtue Theme
    #206756

    Hello Team Kadence,

    I have a new question. We copied the Staff post type and changed it to Directory (no front end profiles) so we could have 2 different types of listings (staff for full profiles and directory just for listings). It works great but as we don’t need the sidebar options, we’d like to remove it from the edit screen. I did not include the code from the Staff to add the sidebar options so I’m not sure why it’s still showing up. I tried adding a function that removes the metabox for directory listings but it seems to only remove it from the template and not when adding a new listing.

    Is there a hook/filter I can use to remove the sidebar options?

    PS. I realize this is a bit out of scope but I’m also curious about turning it off for staff as our default is set to “no” and we don’t want faculty changing it to “yes”. Thank you.

    #206575

    Hey,
    You can use this:

    add_filter( 'template_include', 'change_front_page_template', 10 );
    function change_front_page_template( $template ) {
    	if ( is_front_page() && ! is_home() ) {
    		$new_template = locate_template( array( get_page_template_slug() ) );
    		if ( ! empty( $new_template ) ) {
    			return $new_template;
    		}
    	}
    	return $template;
    }

    But note that the sidebar control will still be overridden by the theme options home layout.

    You could of course, create a similar output for feature sidebar on the home page by turning on the sidebar and adding the page content to the enabled section.

    Ben

    #206562

    Hey,
    The events template won’t give you page options like defining a custom background or things like that because it’s still not assining it to a page it’s an archive without a place for custom settings. So that setting in your screenshot it isn’t that type of template setting that would give you page specific control. You should set that to default events template which will get the page title to output events

    What you would need for more control is likely the pro version but you would have to check with the plugin support about all the pro features.

    If you just want to set the background you can let me know what you want and I can help with css.

    If you just want a sidebar to show up go to theme options > blog options scroll down to the Blog Category/Archive Layout settings and turn on the sidebar for blog archives.

    Ben

    #206559

    I want to hide this for vendor user role only. And once its done by you.
    This is 2nd time, link of 1st time problem topic

    Please help me like 1st time

Viewing 20 results - 1,321 through 1,340 (of 5,356 total)