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'
-
AuthorSearch Results
-
In forum: Virtue Theme
In reply to: Contact Form
In forum: Kadence ThemeTopic: Sidebar element hook?
November 19, 2020 at 12:22 am #260740Hey 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
In forum: Kadence ThemeHi,
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
In forum: Kadence ThemeHi 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
In forum: Kadence BlocksIn reply to: How can I make a block sticky?
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,
HannahIn forum: Kadence BlocksIn forum: Kadence ThemeIn forum: Virtue ThemeIn reply to: Homepage Sidebar Issue?
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!
In forum: Kadence ThemeNovember 10, 2020 at 8:03 am #260343Hey,
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
In forum: Kadence ThemeNovember 10, 2020 at 7:56 am #260341Hey,
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
In forum: Kadence ThemeIn reply to: Changing the padding/margin next to the left sidebar
November 10, 2020 at 7:53 am #260340You can use css like this:
.has-sidebar .site .content-container { grid-gap: 40px; }Ben
In forum: Kadence ThemeHi, 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?In forum: Kadence ThemeIn forum: Virtue ThemeIn reply to: Homepage Sidebar Issue?
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 ThemeTopic: Featured Posts
November 9, 2020 at 11:16 am #260267Hi! 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 ThemeIn reply to: Homepage Sidebar Issue?
November 9, 2020 at 10:25 am #260262Hey,
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 ThemeIn reply to: Homepage Sidebar Issue?
In forum: Kadence ThemeHello 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,
KarlaNovember 6, 2020 at 3:42 am #260156Hi 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: *Login to see link
-
AuthorSearch Results


