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'
-
AuthorSearch Results
-
In forum: Virtue Theme
In reply to: Virtue Image Menu Item Size on Mobile
November 21, 2018 at 4:49 pm #208304Without 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 ThemeIn reply to: Custom Menu Widget Missing
November 20, 2018 at 10:29 pm #208191Hey, 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 ThemeIn reply to: /Shop page
In forum: Ascend ThemeIn reply to: /Shop page
In forum: Ascend ThemeIn reply to: /Shop page
In forum: Virtue ThemeIn reply to: Using Virtue with Brizy
November 19, 2018 at 3:57 pm #208003I’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
In forum: Virtue ThemeIn reply to: Side Bar in Category pages showing beneath content
In forum: Virtue ThemeIn reply to: How to hide content on a Row from Mobile View
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
In forum: Virtue ThemeIn reply to: How to hide content on a Row from Mobile View
In forum: Virtue ThemeIn reply to: Underline link in footer
In forum: Virtue ThemeIn reply to: Unwanted right sidebar in home page
In forum: Virtue ThemeIn reply to: Sidebar Options
November 8, 2018 at 10:48 am #206901function 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
In forum: Membership ForumsIn reply to: Hide sidebar options for selected user role
November 8, 2018 at 10:46 am #206900I 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
In forum: Membership ForumsIn reply to: Hide sidebar options for selected user role
November 7, 2018 at 7:20 pm #206823see all replys of topic
ok i am giving all info
1st i share problem see 1st screenshot – https://i.postimg.cc/Fs6r9jR6/Screenshot-1.pngthen 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.pngIn forum: Membership ForumsIn reply to: Hide sidebar options for selected user role
November 7, 2018 at 6:15 pm #206812I was give topic link in previous reply.
this is link – Previous Topic
In forum: Virtue ThemeHello, 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: *Login to see link
Here is my site: http://www.johngrahamtours.com/ancient-christianity
Thanks, John
In forum: Virtue ThemeTopic: Sidebar Options
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.
In forum: Virtue ThemeIn reply to: Homepage Layout/Template Issues
November 5, 2018 at 10:45 pm #206575Hey,
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
In forum: Ascend ThemeNovember 5, 2018 at 9:59 pm #206562Hey,
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 eventsWhat 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
In forum: Membership ForumsIn reply to: Hide sidebar options for selected user role
November 5, 2018 at 6:38 pm #206559I want to hide this for vendor user role only. And once its done by you.
This is 2nd time, link of 1st time problem topicPlease help me like 1st time
-
AuthorSearch Results


