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,061 through 1,080 (of 5,356 total)
  • Author
    Search Results
  • #228687

    Hi there, I have my Virtue Premium theme runnning with the product page and shop page using two different sidebars.

    For some reason both side bar and their widget content are not displaying.

    Could you please check whether this is a theme conflict?

    Website and login to come next message.

    Thanks,

    Glenn

    #228581

    Hey,
    You can remove <?php echo esc_attr( ascend_main_class() ); ?> and replace with col-md-12 kt-nosidebar clearfix

    Another option you can consider is just adding a filter and not overriding the template at all.

    function kad_sidebar_on_wpdmpro_post($sidebar) {
    if (is_singular('wpdmpro')) {
    return false;
    }
    return $sidebar;
    }
    add_filter('kadence_display_sidebar', 'kad_sidebar_on_wpdmpro_post');

    Ben

    #228550

    Good afternoon
    I am using Ascend Premium on a site with multiple custom post types. The main blog setting is to use a right hand sidebar, but for this post type, I wish to use a full width template. I have created a child theme and taken a copy of single.php renamed as single-wpdmpro.php (tp match the cpt slug) and removed the
    if ( ascend_display_sidebar() ) section.

    The page is using the new single-wpdmpro.php template and no sidebar is showing, but the content column width is still the same as it was before. I am not sure exactly what is controlling the width, but I suspect that I need to replace the main content div statement
    <div class="main <?php echo esc_attr( ascend_main_class() ); ?>" id="ktmain" role="main">

    Can you please advise what classes I should use to make the content full width?

    I am currently working on a local machine, so cannot post a url.

    Thanks

    Mandy

    #228493

    Ah – found the no sidebar option at the bottom of the staff profile page. Was looking in theme options!
    Thank you. All sorted

    #228481

    Hi Leah,
    In your edit page, you can choose whether or not to display a sidebar.
    In the row layout block, try selecting wide width rather than full width. Does that make a difference?

    Hannah

    #228477

    Hi,

    I would like to make staff profiles full width in Virtue Premium (i.e. no sidebar). I have achieved this with some css:

    .single-staff .sidebar {
    display:none;
    }

    .single-staff .col-lg-9 {
    width: 100%;
    }

    However, I would like to make one of the rows here with a full-width background, and it just won’t go full width.
    I have full width background successfully on other pages, but not the staff profiles where I have manually removed the sidebar.
    I am using Kadence Blocks with Kadence Block Row Layout block with full width selected, and it still gives margins down both sides.

    Suggestions to resolve would be much appreciated

    ~Leah
    Is there a better way?

    In forum: Virtue Theme
    #228266

    Hey,
    The filter only filters what content is on your page. It won’t filter into the second page of results, so you should not use the filter for larger sites, instead use a menu for category navigation.

    You can add category navigation through a sidebar which is most common or by using something like elementor or site origin page builder and out accompanying plugins that add archive support.

    Ben

    #227823
    This reply has been marked as private.
    #227815

    Hi guys, I may have found a bug. When I delete a custom sidebar that I had previously created that was empty, the system somehow moves all of the populated widget content down 1 widget, starting from where the deleted sidebar started from. Pretty odd, but here’s a visual description. If my widgets panel looks like this:

    Custom Sidebar 1
    -Content1(a)
    -Content1(b)
    -Content1(c)

    Custom Sidebar 2

    Custom Sidebar 3
    -Content3(a)
    -Content3(b)
    -Content3(c)
    -Content4(d)

    Custom Sidebar 4
    -Content4(a)
    -Content4(b)

    etc…

    Then when I delete “Custom Sidebar 2”, everything shifts and it looks like this:

    Custom Sidebar 1
    -Content1(a)
    -Content1(b)
    -Content1(c)

    Custom Sidebar 3

    Custom Sidebar 4
    -Content3(a)
    -Content3(b)
    -Content3(c)
    -Content4(d)

    etc…

    Whatever was in the last custom sidebar gets bumped out and ends up in “Inactive Widgets” section on panel. Not a big deal to fix, but it is a pain in the ass if you want to keep you custom sidebar widgets panel clean, and if you happen to have a lot of custom sidebars and content (I do). Just thought you’d like to know. Thanks! T

    In forum: Ascend Theme
    #227633

    Hey,
    The sidebar has always shown underneath the content on mobile. What you could do is add a filter to the content area of your shop page, then use css to hide it on desktop and only show it on mobile. And visa versa for your sidebar. Would that work for you?
    Can you link to the filter you’re referencing?

    Hannah

    #227608

    Hi, if you go here from a mobile you will see that the sidecar is moved to the bottom and, from a pc, you will see the sidebar on the left. i thought in the mobile the sidebar will be positioned on the top of the page…. anyway, I noticed that you have a FILTER accordion that shows or not the theme category filter options…. it should be great to have the sidebar like that, on the top of filter, initially closed and expandable like FILTER does… and the optimum would be with a custom label, in this case i will put SIZES/COLORS….

    thank you very much
    Angel

    #227596

    Je dois ajouter ca comme ca ? je l’ai fait ca marche pas !
    Je le remet et vous laisse regarde, merci a vous.

    .page-id-922 aside#ktsidebar {
    display: none;
    }

    In forum: Virtue Theme

    In reply to: Category Sidebars

    #227559

    Some other information. Most filters that use attributes check if that attribute is part of the main loop before they show. So widgets like that hide themselves naturally.

    There are also easy widget visibility tools that allow you to customize which widgets show based on the page or category, this makes it easy to manage different widgets for different categories.

    Finally, if you want to make sure there are different sidebars per category then you need to use a child theme, you would have to filter in the sidebar id based on the category, in a child theme functions.php file it would look like this:

    add_filter( 'kadence_sidebar_id', 'custom_sidebar_for_category' );
    function custom_sidebar_for_category( $sidebar ) {
         if( class_exists('woocommerce') ) {
              if ( is_product_category() ) {
                   if ( is_product_category('Category_slug') ) {
                       $sidebar = 'sidebar1';
                   } else if( is_product_category('Category_slug_2') ) {
                       $sidebar = 'sidebar2';
                   }
              }
         }
         return $sidebar;
    }
    In forum: Virtue Theme

    In reply to: Category Sidebars

    #227528

    Hi Miguel,
    I would recommend creating pages using the default page template and selecting your specific sidebar. Then you can add your products within specific categories via shortcode like this: [products limit="8" columns="4" category="hoodies"]
    Hope that’s helpful!

    Hannah

    #227523

    Hey Melanie,
    Looks like you took the sidebar off that page. There isn’t a way to create this effect when using the sidebar. You could create a single long column using the row layout block, creating a sidebar effect. Would that work for you?

    Hannah

    In forum: Virtue Theme
    #227516

    Hello Team,
    I’m using Virtue Theme and need a sidebar for my category pages with Woocommerce products.
    Each sidebar will be different and I want to include filters like product attributes related to that specific category.
    What do you think is the best way to do this?

    THANKS!!

    #227499
    This reply has been marked as private.
    #227498

    Hi,

    I am using Ascend premium and blocks. I would love to use one of the divider settings on the bottom of my page header to tie it into the page a bit more. Is there any way I can do this??

    I know I can do it as a full width recurring block on each page but if I add a sidebar to that page it breaks.

    Example below.

    Thanks, Mel

    #227399

    Did you clear your cache after making this change? You could also use css like this:

    .page-id-922 aside#ktsidebar {
        display: none;
    }

    Hannah

    #227392

    Hey Amal,
    That’s your sidebar. In your edit page are you able to turn off the sidebar under Page Options?

    Hannah

Viewing 20 results - 1,061 through 1,080 (of 5,356 total)