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,881 through 1,900 (of 5,356 total)
  • Author
    Search Results
  • #173169

    Hi,
    I have Virtue Premium.

    Please look at these pages:
    1.
    2.

    The sidebar of these both pages are different and can’t understand why. Has anyone an idea?

    Best Regards,
    isiscom

    In forum: Ascend Theme

    In reply to: Page template issue

    #173139

    That is a video showing the virtue theme which is different from the ascend theme in it’s templates and options.

    Fullwidth in virtue simply means no sidebar. So in ascend with any template including the default you can set the sidebar on or off. Making it so you don’t need a “fullwidth” template in ascend.

    If you want your content to be full screen width and extend outside of the page size you can use pagebuilder and in your row settings set the row layout to fullwidth stretched.

    Ben

    In forum: Virtue Theme

    In reply to: Vertical menu

    #173103

    Hi Melissa,
    Hope you had a good Christmas!
    There isn’t a built-in option for a vertical menu within Virtue, but this is a feature within Ascend. See here: http://themes.kadencethemes.com/ascend-premium-4/
    Or else you could add a navigation menu widget into a sidebar on your page. Or one more option is to use a plugin like this: https://wpmegamenu.com/vertical-mega-menu/
    Hope that’s helpful!

    Hannah

    #172385

    This css should work:

    @media (max-width: 992px) {
    .tax-product_cat aside#ktsidebar {
        display: none;
    }
    }

    Hope it helps!

    Hannah

    #172370

    Hello!

    Back to this question: I found an other page, where I do not want sidebar, either. It’s a kind of category page.

    Example: goo.gl/TM2ZVR

    Can I use a similar display none code here?

    Thanks,
    Anita

    In forum: Virtue Theme
    #172282

    I’m not sure I’m following. It sounds like you’re wanting the sidebar enabled on this page: http://www.mlc-test-site.com/mg-b-parts/ enabled on your homepage (landing page)? Then you want the hide the submenu items from the mg-b-parts page. Is that correct? Or am I missing something?
    Sorry for not understanding.

    Hannah

    #172095

    If you have pagebuilder installed you need to go to settings > pagebuilder and make sure the sidebar emulator is turned off.

    Ben

    In forum: Virtue Theme

    In reply to: Menu

    #171976

    Thank you both!

    Moving the sidebar to the left and adding menu widget. and adding image links to the right side for another menu.

    I’ll need to edit the font size & color for the menu widget though…???

    Mikel

    In forum: Virtue Theme
    #171947

    Hello!
    How can I remove the sidebar on the inside pages?

    In forum: Ascend Theme

    In reply to: Issue with shop layout

    #171943

    Yes. On the right side under Sidebar Options.

    Hannah

    #171939

    This should work:

    @media (max-width: 992px) {
    .tax-product_tag aside#ktsidebar {
        display: none;
    }
    }

    Hannah

    #171937

    One more thing: I’ve noticed, that on site using ‘Product tag’, that is the same issue.
    Do you have a similar code for that as well, so to deactive sidebar in mobile view?

    goo.gl/tRNjCH

    Thanks, Anita

    In forum: Ascend Theme

    In reply to: Issue with shop layout

    #171936

    You had a sidebar enabled from your shop edit page. Should be set now.

    Hannah

    In forum: Ascend Theme

    In reply to: Issue with shop layout

    #171918

    Hey,

    Try going to Theme Options> Shop Archive Settings, and find “Default Layout for product archive pages.” Make sure that No sidebar is selected.

    Let me know if this works for you.

    -Kevin

    #171903

    Hey Anita,
    Try adding this to your custom css box in Theme Options > Custom CSS:

    @media (max-width: 992px) {
    .post-type-archive aside#ktsidebar {
        display: none;
    }
    }

    Hope it helps!

    Hannah

    #171885

    Hi,
    I have 3 sites now running with same setup. I have Woo Templates created for the shop and category pages. On the first 2 sites you can see they work and all have 2 sidebars.

    site/shop/
    b/shop/

    But on the third site with exact same setup and options used the shop sidebar keeps pulling through as well, as seen here:

    site/shop/

    Any ideas why please?

    #171882

    Hello Support team!

    I use default filter preset as widget in shop sidebar, on my shop page, pc view. But on mobile, widget filtering can’t work nice, and there’s the option (of product filter plugin) to define a different filter preset there. So I’ve changed it to a different filter preset to be displayed on the top of the page, only in mobile view.

    However, shop sidebar with the widget (and the default filter in it) is still visible in mobile view. BUT, I wouldn’t need the widget there in mobile view. Can we delete it from there, but only in mobile view?

    I hope I could explain that.

    Please check my shop page on mobile:
    goo.gl/esRnLo

    Thanks,
    Anita

    #171849
    function custom_sidebar_id_assignment($sidebar_id) {
    if(is_singular('rule')) {
     if(has_term( 'article', 'contenttype' )) {
         $sidebar_id = 'sidebar2';
     } else if (has_term( 'ILSR Press Room', 'contenttype' ) ) {
        $sidebar_id = 'sidebar3';
     } else {
       $sidebar_id = 'sidebar4';
     }
    } 
    return $sidebar_id;
    }
    add_filter('kadence_sidebar_id', 'custom_sidebar_id_assignment');

    So something like that should work.

    Ben

    #171836

    Hi Ben-
    Thanks for the reply. Will do on starting my own thread next time, my apologies.

    The ContentType (slug contenttype) is actually a custom Taxonomy and works for us like a separate categorization of content from the normal WP Categories.

    It contains the following elements:

    Article
    ILSR Press Room
    ILSR in the News
    ILSR Victories
    Press Releases
    Resource
    Audio
    Books
    Charts & Graphs
    Fact Sheets
    Presentations
    Reports
    Video
    Rule
    Agriculture Rule
    Banking Rule
    Broadband Rule
    Energy Rule
    Environment Rule
    Equity Rule
    Governance Rule
    Independent Business Rule
    Taxation Rule
    The Public Good Rule
    Waste to Wealth Rule
    Composting Rules

    So ideally I’d like to use your functions trick to automatically choose custom sidebars for some of the taxonomy items related to the rules items.

    thanks.
    john.

    #171822

    Hey John, in the future please create your own topic. Don’t post in others.

    I don’t know how your setting “contenttype” is this a meta field?

    For custom post type:

    function custom_sidebar_id_assignment($sidebar_id) {
    if(is_singular('rule')) {
     $sidebar_id = 'sidebar2';
    } 
    return $sidebar_id;
    }
    add_filter('kadence_sidebar_id', 'custom_sidebar_id_assignment');

    Ben

Viewing 20 results - 1,881 through 1,900 (of 5,356 total)