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 - 4,261 through 4,280 (of 5,356 total)
  • Author
    Search Results
  • #44356

    Hi, I am trying to add a banner that was created by another company… it is to help me get votes for a grant and they generated the code for me on their website. However, I am not sure where to paste the code. Should I add it to a template? or the custom CSS? I would like it to appear on the front page sidebar, but it doesn’t show up when I pasted the code into the text or visual editor widgets.
    This is the code for the banner:

    In forum: Virtue Theme
    #44326

    Well if you set the sidebar to default then it would use your theme options settings. That way you could change it if you needed to.
    The slug is what you add in your theme options with dashes for spaces and no caps.

    Regardless if you just want to override control and use a child theme function you can.

    add_filter('kadence_sidebar_id', 'product_single_sidebar_id');
    function product_single_sidebar_id($sidebar) {
      if (is_singular('product')) {
        return 'product-page-sidebar';
      }
      return $sidebar;
    }
    

    Ben

    In forum: Virtue Theme
    #44299

    OK I think I found the issue – I used WP All Import to upload all my product data. There’s a custom field I can set called “_kad_post_sidebar” and “_kad_sidebar_choice” but how can I found the slug for my custom sidebar?

    In forum: Virtue Theme
    #44296

    Hello Ben

    YES – that is indeed the issue. THANKS !!

    Display Sidebar? >> YES
    Choose Sidebar >> Primary Sidebar —– <<<<< This should be my custom sidebar

    However, I have over 600 products!! Is there a function/method to switch Products to all use the custom sidebar ??

    #44281

    Hi Ben

    Since updating today, there are quite a few glitches on my site that I have noticed already – eg product titles in grid view, sidebar moved back to the right, spacing of AJAX filters in shop sidebar, etc.

    It looks a bit as though some of the styles within advanced settings are not being read, or there is something over-riding them.

    Is there anything in the update that might be causing this?

    allabouttea.co.uk

    In forum: Virtue Theme
    #44192

    Solace,

    In each products edit page, Check that you have sidebar default as the sidebar choice.

    Ben

    #44134

    Hi Ben

    I have created a custom sidebar in Theme Options > Misc > create new sidebar >> “Product Page Sidebar”

    This shows up fine in wp-admin > Appearance > Widgets
    On the widget, I added a few different things such as layered Nav, woocommerce product categories etc….

    I also went to Theme Options > Product Settings > Product Sidebar Default >> YES, Show – And set >> Choose a Default Sidebar for your Single Product Pages >> “Product Page Sidebar”

    BUT It’s not showing on the product pages – only the default sidebar shows.

    I am on version Virtue – Premium 3.0.7

    Thanks for assistance
    Sol

    In forum: Virtue Theme

    In reply to: Default Page Template

    #44121

    Hey,
    So that isn’t how it’s set up. you would have to use a child theme (download here: https://www.kadencewp.com/wp-content/uploads/2014/02/virtue_premium_child.zip )

    Then you would add this function into the child theme functions.php file:

    add_filter('kadence_display_sidebar', 'kt_page_sidebar');
    function kt_page_sidebar($sidebar) {
      if (is_page() && !is_page_template('page-sidebar.php') ) {
        return false;
      }
      return $sidebar;
    }

    Ben

    #44116

    Hi so sorry for the elementary question, but is there any way to change the default page template? So it defaults to full page instead of sidebar?

    Thanks!
    Eric

    #44095

    You can place a search bar in the “topbar” if you enable the topbar in the theme options > topbar settings. That would place it before the products.

    Sidebars will always drop below the content on mobile.

    Ben

    In forum: Virtue Theme
    #44065

    Right in your post settings. Turn the sidebar of.

    http://docs.kadencethemes.com/virtue/#blog_posts

    Ben

    #43915

    How can I create a page with no sidebar? I would like my content to span the entire page.

    #43824

    Hiya

    How can I amend the icon that shows on the sidebar ?

    Here :
    The little pens in front of the posts

    Thank you

    Nathalie

    #43807

    Gotcha, try adding this:

    .sidebar .widget_text {
      padding: 5px;
    }
    .sidebar .widget {
      padding: 5px;
    }

    Hannah

    #43803

    Hi Hannah,

    This does the padding for the sidebar but I was hoping to get the padding for the content inside the sidebar. See how the H3 titles are moved over to the right a bit? I was able to get padding done for them but I couldn’t move the texts/contents below the titles (inside the box).

    http://www.twopeasinthepantry.com

    Jane

    In forum: Virtue Theme
    #43789

    Hi Kim,
    What pages are on your site? Can you post a link? Does using a sidebar page template work for you? Between pagebuilder and shortcodes you can add just about anything to a sidebar template page.

    Hannah

    #43784

    Hey Jane,
    Try adding this to your custom css box in theme options > advanced settings:

    .sidebar {
      padding: 10px;
    }

    Hope that works for you!

    Hannah

    #43782

    Found out the error

    
    @media (min-width: 767px) {
    .postlist article > .row > .col-md-5 {
        width: 25%;
    }
    .postlist article > .row > .col-md-7 {
        width: 75%;
    }
    }

    Had to change the min-width to 767px since I had the sidebar enabled

    However, is there a way to have the feature image centralised vertically to the rest of the post? That than locking to the top?

    Thanks

    In forum: Virtue Theme
    #43762

    It seems to me I came to this post because I was looking for the same option. I want a sidebar on all pages, as this client has very few pages, and I am trying to encourage contacting her. This is not e-commerce, just a product gallery/inventory thing. Inventory or another gallery plugin is not necessary or worth the time to investigate here. I bought this theme because I thought it would be flexible in this kind of way.

    Making a child theme for this one function is not in the cards here. I will have to pick my battles, as I have many more customizations to ask about(elsewhere).

    #43754

    Hi,

    Can I please have the shortcode for the padding of the sidebar content section. The texts are currently attached to the borders.

    Thank you.

Viewing 20 results - 4,261 through 4,280 (of 5,356 total)