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 - 3,921 through 3,940 (of 5,356 total)
  • Author
    Search Results
  • #61032

    Hi,

    can one add filters below header to the category pages ?

    like price range or color or other attributes ?

    idealy i would like them to be on the same “row” with the sorting dropdown but i settle for less

    I am testing with sidebar but i don’t love it that much, i would like the products to take the whole width

    thanks, B.

    #61028

    Hello,

    See:

    I have made a custom sidebar for this and I have enabled the sidebar for “product settings” and selected my custom sidebar, but no sidebar is displayed. What did i wrong?

    #60945

    Hey,
    Add this css:

    .hometitle:after, .sectiontitle:after, .widget-title:after {
        display: none;
    }

    and for the categories widget

    .sidebar select, .sidebar .select2-container {
        width: 100%;
    }

    Ben

    In forum: Virtue Theme

    In reply to: Testimonial Full Width

    #60942

    You can add this css:

    .single-testimonial #ktmain {width:100%;}
    .single-testimonial #ktsidebar {display:none;}
    

    Ben

    #60935

    Hello,

    I just added a testimonial to my page and then still have the primary sidebar widgets, so I removed them.
    And I see no option to make a testimonial full widht, how can I get rid of the primary sidebar blank space?

    Thank you.

    #60917

    Hey,
    In normal pages you can use the “fullwidth” page template and you won’t have a sidebar.

    Ben

    #60905
    This reply has been marked as private.
    #60891

    Hannah,
    Thank you, that will fix the issue.

    Do you also know why the sidebar is displayed on “normal” pages like http://www.staging1.mullerthuisentuin.nl/zaagservice/, because i only activated the sidebar on the shop page, i think :-).

    #60861

    Hello,

    I have a problem with the sidebar on the woocommerce shop page.
    I have activated the sidebar in the theme options. The sidebar is displayed, but it is displayed under the content and not as two columns.
    See:

    I have both used the “default template” and the “sidebar” template in the page settings according to

    Another problem i have is that the sidebar is also displayed on pages for example:

    How can i solve this two problems?

    #60820

    ok in your child theme functions.php file add this :

    add_filter('kadence_display_sidebar', 'tribe_sidebar');
    
    function tribe_sidebar($sidebar) {
    if (tribe_is_event_query()) {
    return false;
    }
    return $sidebar;
    }

    Ben

    #60797

    Hi,

    Our client has been using The Events Calendar Plugin for a while now and they’ve noticed that the sidebar is showing underneath the calendar.

    I have tried for hours now to remove it but with no luck.
    The plugin comes with it’s own template or with the option of choosing from the themes templates. I have tried all the templates but none remove the sidebar. It just swaps between being on the right hand side and underneath.

    How can I stop the sidebar from showing on the page?

    I will send admin details in private reply incase you need them.

    Thanks for your help,
    Anthony

    In forum: Virtue Theme

    In reply to: width and sub menus

    #60765

    Hey,
    a Sticky post will not count as part of the loop so if you have one it will jump above the loop and you’ll never be able to have just one post.

    Why are you using a virtue: recent posts widget? It’s for sidebars? How are you wanting it to show.

    No there isn’t a shortcode to target one particular posts. You can assign a unique category to each post and assign them that way though.
    Ben

    #60550

    If you want to change all the sidebar widget titles it’s this css:

    .sidebar h3 {
        font-size: 22px;
        line-height: 30px;
    }

    If you only want the filters then it’s this:

    .sidebar .widget_layered_nav h3 {
        font-size: 22px;
        line-height: 30px;
    }

    Ben

    #60539

    ok, so just to be clear you want to change the font of the items in the wooocommerce product filter in your sidebar, right?

    Add this:

    .widget_layered_nav ul li a {
        font-size: 16px;
        font-family: lato;
        font-weight: bold;
    }

    Ben

    #60512

    Hi Ben,

    I’ve stopped the maintenance mode

    Store

    I will try to keep the plugin to a minimum thus I’ll stay with the layered nav in the right sidebar then 🙂

    Br
    Anders

    #60448

    ok, wait that just sounds like you would like a sidebar? Is that what your thinking? You can add a sidebar to any page with the same widgets in the sidebar.

    Ben

    In forum: Virtue Theme

    In reply to: Custom Template

    #60434
    add_filter('kadence_display_sidebar', 'kt_custom_page_sidebar');
    function kt_custom_page_sidebar($sidebar) {
      if (is_page_template('page-custom.php') ) {
        return false;
      }
      return $sidebar;
    }

    You would add a function like that ^ to your child theme functions file. Just change “page-custom.php” to whatever you have name your page file.

    Ben

    #60426

    No need for any appologize Hannah, I really appreciate Your and the rest of Your teams support 🙂

    I’ve pasted both your new css into the css box, but it do not seem to make any change- any good surgestions maybe I do something wrong?

    Can I add font-style, font-size and other font related css inside the brackets?

    Well if I can change the layout of the build in woocommerce layered nav I will prefer to keep it to as few plugins as possible.

    My first thought is at the right sidebar but have been thinking of having it at the top if possible and it would be great if its possible to open and close it

    Br
    Anders

    #60304

    Hi Elana,
    Try using this shortcode: [blog_grid orderby=date items=12 columns=2]
    You can enable the home widget area from Theme Options > Home Layout and paste that shortcode into a visual editor widget in Appearance > Widgets.
    As for justifying the text and pictures, I’m not sure which you’re referring to. Do you mean in the sidebar?

    Hannah

    In forum: Virtue Theme
    #60287

    Hi Ben,

    I need to make a custom template and I am using the Full Width template as the base. Here is my test page. I will be using the WP loop to bring in posts to populate the page once I get the page structure correct.
    Problem is the sidebar is showing up. How do I eliminate the sidebar?

    Thanks,
    Shaun.

Viewing 20 results - 3,921 through 3,940 (of 5,356 total)