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 - 481 through 500 (of 5,356 total)
  • Author
    Search Results
  • In forum: Virtue Theme

    In reply to: Contact Form

    #260774
    This reply has been marked as private.
    #260740

    Hey Kadence team,

    I’m still loving the pro theme and blocks, but I’ve got a quick question; is it possible to have a hook INSIDE the sidebar as opposed to before or after the sidebar?

    Basically inject stuff into the sidebar itself where the widgets are, for specific posts, or posts within a specific category?

    Thanks for the info, and keep up the amazing work!

    -Walter

    #260715
    This reply has been marked as private.
    #260692

    Hi,

    We have found a really good use for Elements which allows us, via a feature image shortcode and some css, to place the featured image where we want it so it can be a hero page banner. The only problem is that there is no placement/hook to insert it directly below the title bar on a page which has a sidebar. We can only place it above the title bar or in-page content areas.

    Can you advise if this is possible?

    thanks

    #260685

    Hi Hannah,

    We’ve changed our design to be all white and white sitebar now so it doesn’t matter. But essentially what I was trying to do was to set the whole left side from the grey sidebar to grey and the entire right side (including the padding area to the right of the left sidebar) to white. The only way I could think of doing it was to set the content area to have no padding in theme and then set padding on all the blocks inside. Needless to say, I didn’t want to go down that route. I’ll mark as resolved as we don’t need to make the change now.

    thanks

    #260650

    Hey Eric,
    Kadence Theme Pro has a built-in option for a sticky sidebar. It can be set from Customize > General > Sidebar > Enable Sticky Sidebar.

    An option for a sticky block is in the requests! You can vote on it here: https://www.kadencewp.com/roadmap-blocks/feature-requests/option-in-the-row-block-to-make-a-section-sticky/

    All the best,
    Hannah

    #260607

    Hey guys, is there a way to make a Kadence block or column sticky (Simulating a sticky sidebar widget) ?

    Thank you! 🙂

    #260602
    This reply has been marked as private.
    In forum: Virtue Theme
    #260368

    Hi Ben,

    I took another look and realized the key for the sidebar was for _kad_post_sidebar so I swapped it for _kad_page_sidebar and now yes/no works as expected. Thank you very much! This is great and will save me a lot of support down the road. I really appreciate the fix! Have a great day!

    #260343

    Hey,
    1. You can use css, for example this will make it black.

    .content-style-unboxed .site .kadence-thumbnail-position-behind:after {
        background:linear-gradient(0deg, #000 5%, rgba(0,0,0,0.35) 30%, rgba(0,0,0,0) 50%)
    }

    2. You can use css like this:

    @media screen and (min-width: 1025px) {
    .has-sidebar .site .content-container .kadence-thumbnail-position-behind.alignwide {
        margin-left: 0px;
        margin-right: 0px;
    }
    }

    3. You can use css like this:

    .site .kadence-thumbnail-position-behind {
        margin-bottom: -100px;
    }

    Ben

    #260341

    Hey,
    This is how woocommerce works, filters only show where items can be filtered. There isn’t any way to make the filters a link to a custom archive page outside of the woocommerce archive where they filter the current query and show based on the current query.

    I think you would need to create custom menus that you add to your single product sidebar if you want filter links there.

    Ben

    #260340

    You can use css like this:

    .has-sidebar .site .content-container {
        grid-gap: 40px;
    }

    Ben

    #260314

    Hi, my sidebar is not showing all filters in single product page.
    Only in product catalog (archive page) all filters are visible.
    Despite both pages having set “Sidebar 2” as the default sidebar…
    Am I missing something, or is this a bug?

    • This topic was modified 5 years, 5 months ago by Calin ADW.
    • This topic was modified 5 years, 5 months ago by Calin ADW.
    #260307

    Hi,

    Can you please advise how I adjust the left padding/margin spacing inside the content area on a page with a left sidebar?

    thanks

    In forum: Virtue Theme
    #260271

    Hi Ben,

    Thank you very much. I got the first one to work no problem, but the 2nd one (yes/no for display sidebar) does not. I tried changing the order I put these functions in functions.php and also tried adding a priority, but it still ignores the yes/no. At the moment, the yes/no only works via Theme Options > Home Layout > Homepage Layout.

    Is there something else I should add first? Thank you.

    In forum: Kadence Theme
    #260267

    Hi! Is there a way to have a featured posts block, instead of recent posts? I searched the help center and couldn’t find a match. I would like to put this into a sidebar or in my 404 page. Thanks!

    In forum: Virtue Theme
    #260262

    Hey,
    this will get the ID:

    add_filter( 'kadence_sidebar_id', 'custom_use_front_page_sidebar_meta' );
    function custom_use_front_page_sidebar_meta( $sidebar ) {
    if ( is_front_page() ) {
        $front_id = get_option( 'page_on_front' );
        $postsidebar = get_post_meta( $front_id, '_kad_sidebar_choice', true );
        if ( isset( $postsidebar ) && ! empty( $postsidebar ) && 'default' !== $postsidebar ) {
            $sidebar = $postsidebar;
        }
    }
    return $sidebar;
    }

    This will get if the sidebar should show:

    add_filter('kadence_display_sidebar', 'custom_use_front_page_sidebar_show_meta');
    function custom_use_front_page_sidebar_show_meta( $sidebar ) {
    if ( is_front_page() ) {
        $front_id = get_option( 'page_on_front' );
        $postsidebar = get_post_meta( $front_id, '_kad_post_sidebar', true );
        if ( isset( $postsidebar ) && 'yes' === $postsidebar ) {
    	   return true;
        } elseif ( isset( $postsidebar ) && 'no' === $postsidebar ) {
               return false;
        }
    }
    return $sidebar;
    }

    Ben

    In forum: Virtue Theme
    #260254

    Thanks Hannah – I really hope so as it’d solve a few issues for me (user support-wise as they can’t seem to wrap their head around choosing the sidebar from the theme options). 😀

    #260173

    Hello Heith,

    Thank you for reaching out to us.

    Since you’re basically using the blog archive as your homepage, go to Customizer > Blog Posts > Archive Layout, look for the Archive Layout option, select the Right Sidebar layout and the Post Archive Default Sidebar that you use.

    Hope this helps and let us know if we can assist you further.

    Best Regards,
    Karla

    #260156

    Hi again,
    I forgot to add this to my list of issues:

    If I have a filter by attribute widget in the off-canvas sidebar for the shop and I have it set to dropdown, the list doesn’t populate. If it’s set to list then it’s fine. For comparisons sake I can have the filter by attribute in a normal sidebar as a dropdown and it works.

    Link and login same as this thread if you need it:

Viewing 20 results - 481 through 500 (of 5,356 total)