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,241 through 1,260 (of 5,356 total)
  • Author
    Search Results
  • #214888

    I can confirm it’s not a bug that the filter doesn’t search your page, it’s not forcing a reload like your sidebar widget it’s simply a filter designed specifically to filter the page and we try to make that clear in the theme options where you turned it on. Where you have a lot of products this filter is not intended to be used. Much better to use normal navigation which you can easily add at the top of your shop page if you wish.

    I strongly encourage you not to have more than 80 products on your page. In fact, I would advise not to have more than 30.

    However you certainly can do whatever you want regardless of our advice.

    Using a child theme: https://www.kadencewp.com/child-themes/

    You can add this function to the child theme functions.php file.

    function custom_products_per_page() {
    return 120;
    }
    add_filter( 'loop_shop_per_page', 'custom_products_per_page', 100 );
    #214713

    4. In your theme options > misc settings turn off animate in, that should resolve the products not being visible.

    And if you use an elementor template that would remove a sidebar as it’s supposed to. Those templates specifically don’t have sidebars you have to add them in through elementors interface.

    In forum: Virtue Theme
    #214698

    Yes, that works. I just don’t think it looks right with the sidebar at the bottom so better without on a mobile.

    Thanks.

    #214669

    I’m seeing a sidebar display on your home page:
    https://www.pameladyanne.com/

    -Kevin

    #214630

    Hello,

    You should be able to assign a sidebar to your blog grid template. Under the “blog grid options” make sure that the sidebar layout is enabled and the proper sidebar selected.

    Also, please post a link with all support queries so I can see the current output.

    Thanks!,
    Kevin

    In forum: Virtue Theme
    #214621

    Hello,

    The sidebar is designed to drop below your page content when viewing on a mobile device. The window on a phone is not large enough to display the sidebar next to the content in mobile display.

    If you’d like to hide the sidebar in mobile entirely, you can with this CSS:

    @media (max-width: 767px) {
    aside#ktsidebar {
        display: none;
        }
    }

    Let me know if that’s helpful for you.

    -Kevin

    #214593

    Hi, I’ve been building some new bits of my site using Elementor Pro, but there seems to be some conflicts (I’ll be passing them on to Elementor, too).

    1. On pages built with Elementor, when I hover my mouse over my top menu, the secondary menus don’t drop down like they should (it works fine on pages not built with Elementor).

    2. Elementor’s maintenance mode tool doesn’t go full screen – it just sits at the top of the page (I’d had the maintenance mode template set as per Elementor’s instructions, and it had previewed correctly). I was working on updates on my site for two days before I realised that people were still able to see everything! (Solved by using a different maintenance mode plugin.)

    3. Pages built with Page Builder don’t seem to transfer into Elementor. Even when I choose to transfer to the WordPress editor, then go into Elementor, any changes I make don’t show up. It’s not too much of a problem – I can just remake a page in Elementor from scratch. It’s just more of an FYI.

    4. Some blocks don’t display properly. I haven’t been able to use an Elementor template like I wanted to for my Woocommerce store, because the products and sidebar don’t display. When I put the Elementor products archive block in, the products are all there, they’re just invisible (I can hover over the products and see the link, I can click on them to go to the product page, but the page *looks* like it’s blank). The sidebar isn’t there at all. I tried using just an Elementor header template with the default archive (I have a nice, pretty header image I want to use), but although I could see the archive and sidebar, they didn’t display properly (the price filter was two input boxes instead of a slider bar, for example).

    For the time being, I’ve had to ditch the Elementor template, go with the default archive page and use MasterSlider for the header image (which isn’t great, because the text doesn’t display properly on mobile pages or smaller screens).

    Similarly, the Elementor testimonials carousel doesn’t ‘carousel’ – it’s just stuck on the first one, and I tried to make a slider gallery with images of sample pages, which didn’t display, so, again, I’ve used a MasterSlider for that (which isn’t such a problem for me; just thought I’d let you know).

    The problem with the shop archive disappeared when I switched to the WordPress TwentyNineteen theme. I’ve checked most of my plugins, none of which made a difference, so I assume these are theme conflicts.

    Any tips on workarounds, particularly for the product archive and top menu, please?

    #214585

    Hi,

    Is there a way to use the Blog Grid template on the blog page and retain the sidebar? Each time I attempt to set it up, I save, it is disappears. I don’t think it likes that layout. 😉

    Thanks,
    Pam

    #214571

    Hi there

    Using sidebars look fine on browser on a computer but on a mobile they go below the content so don’t look right.

    Is there something in the Theme Options I’ve missed or does it need some CSS?

    Thanks

    #214494

    Kevin, I found it.

    Home page, using Page Builder. In right sidebar under attribute, selected Sidebar. 😉

    Thank you,
    Pam

    #214487

    Hi, Ben and Hannah,

    I can’t seem to get the sidebar to show up.

    Using SiteOrigin Page Builder on HomePage.
    In Theme Options have sidebar checked on both HomePage and Layout.
    Using Primary Sidebar Widget.

    What have I missed?
    Thank you,
    Pam

    #214248

    Hey Luis,
    To my knowledge, there isn’t a built-in function to have the tabs start closed. Although I will have the theme developer confirm this. What you can do is adjust the spacing for mobile. When editing your block you should see an option in the right sidebar settings to adjust only for mobile. See here: https://postimg.cc/1gtksCJj Is that helpful?

    Hannah

    In forum: Virtue Theme

    In reply to: Update PHP to 7.2

    #214197

    Version 3.6.1

    >> Ok, sorry, I see it is a very old version > maybe I need to upgrade ?

    Changes in the child theme :

    – some css
    – and in functions.php :

    <?php

    add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
    function theme_enqueue_styles() {
    wp_enqueue_style( ‘virtue_premium-style’, get_template_directory_uri() . ‘/style.css’ );

    }

    // Fonctions JJ
    // Enregistrement des sidebar et des widgets pour la home page

    if ( function_exists(‘register_sidebar’) ) {
    register_sidebar(array(
    ‘name’ => ‘jj-home-sidebar’,
    ‘before_widget’ => ‘<div align=”center” class=”jj-home-sidebar”>’,
    ‘after_widget’ => ‘</div><br>’,
    ‘before_title’ => ‘<h3 align=”center” color=”#4c698e” class=”jj-home-droite”>’,
    ‘after_title’ => ‘</h3><br/>’,
    ));
    }

    // Enregistrement sidebar pour image

    if ( function_exists(‘register_sidebar’) ) {
    register_sidebar(array(
    ‘name’ => ‘jj-sidebar-image’,
    ‘before_widget’ => ‘<div align=”center” class=”jj-sidebar-image”>’,
    ‘after_widget’ => ‘</div><br>’,
    ‘before_title’ => ‘<h3 align=”center” color=”#4c698e” class=”jj-sidebar”>’,
    ‘after_title’ => ‘</h3><br/>’,
    ));
    }

    ?>

    #214124

    I haven’t activated the parent theme yet. And the upgrade cost is almost 3xs what I pay now. But it would be on a dedicated server. Want to see if there is a work around first.

    The changes I made in child theme via css is as follows. These are codes you gave me over the years. And don’t think I changed any .php files. And parent updates are inherited.

    .footercredits {
    padding: 1px 0 0;
    }

    .footerbase {
    background:#303030;
    }
    #containerfooter {
    background: black;
    padding-top: 20px;
    border-top: 4px solid green;
    }
    .footercredits p {
    margin-bottom: 0;
    }

    .home .is-sticky #logo {
    display: block;
    }

    #pg-4-0 .panel-grid-cell#pgc-4-0-0 {
    padding: 0;
    }

    .kad-header-left {
    padding-left: 0;
    }

    .navclass {
    border-bottom: 4px solid green;
    border-top: 3px solid green;
    }
    .contentclass a {
    color: #4a8c2b;
    }

    .col-md-12.kad-header-right {
    background: #fff;
    }

    aside#ktsidebar {
    background: #f2fcfc;
    }

    #mc_embed_signup .size1of2 {
    float: none !important;
    width: 100% !important;
    margin-right: 0 !important;
    }
    #mc_embed_signup .button {
    margin: 0 auto 10px !important;
    display: block !important;
    }

    #213824

    Hi, the gallery on my portfolio pages is showing up as narrow and to the left of the page. I have tried changing the width and number of columns and nothing happens. I have no sidebar. How can I make it pagewidth and centered? Thanks

    In forum: Virtue Theme
    #213795

    Hi all,

    There is a plugin I have installed for product filtering in the sidebar, on the left. How do I change the green Phosphorescence colour of that plus (+) icon?
    Thank you.

    Claude

    #213628

    Hey Sharon,
    Try using this css:

    @media (min-width: 992px) {
    .page-id-742 aside#ktsidebar {
        width: 15%;
    }
    .page-id-742 div#ktmain {
        width: 85%;
    }
    }

    Let me know how that works for you!

    Hannah

    #213586

    I can try that. But Pagebuilder has been giving me problems with the “saving mode” locking up. Everything gets saved but saving mode doesn’t stop until I refresh. Hopefully Site Origin is correcting it since I messaged them. They said they couldn’t duplicate the issue. But everytime I deactivate Pagebuilder widget bundle, saving mode works properly. Then, later when I reactivate widget bundle, it works for awhile, then the saving mode starts all over again locking up. They have another update. After I back up the site, maybe I will reactivate it and see if it works correctly.

    Had the same issue with Black Studio TinyMCE Widget plugin too. But seems to be working now.

    I do like your Ascend info box I use for the icons and links for the sidebar. I assume via Pagebuilder I could do the same thing essentially?

    PS How about send me the css code as a backup option?

    #213584

    You can force that with css, or you can create the page with pagebuilder and instead of adding a sidebar simply add a column in pagebuilder with the widgets you want. then you can set the column to whatever width you want.

    Ben

    #213570

    Is there a way already available to narrow the sidebar width of just one page only?

Viewing 20 results - 1,241 through 1,260 (of 5,356 total)