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: Pagination with testimonial shortcode
October 21, 2015 at 11:11 am #63791You can use another function for that:
add_filter('kadence_sidebar_id', 'kt_testimonial_sidebar_id'); function kt_testimonial_sidebar_id($sidebar) { if(is_page_template('page-testimonial-grid.php') ) { $sidebar = 'sidebar-primary'; } return $sidebar; }Just change “sidebar-primary”
Ben
In forum: Virtue ThemeIn reply to: Pagination with testimonial shortcode
Hi Hannah & Ben, thank you for your suggestions. 🙂
I am trying the functions code and it works perfectly except that it displays the primary sidebar. How do I call the custom sidebar I’ve made instead? It was created in the theme’s misc settings.
Thanks again,
Phillip
In forum: Virtue ThemeIn reply to: Store page layout
October 21, 2015 at 2:06 am #63727ok, it is what I said, Somewhere in your custom css you are adding:
body .main { float: right; }You need to remove that.
That is bad css that is breaking your site.
If you want the sidebar on the left you need to use the css which we have posted here: https://www.kadencewp.com/post-frequently-asked-questions/
@media (min-width: 992px) { body .main.col-lg-9 {float:right;} }Ben
In forum: Pinnacle ThemeIt seems like Blog Post Sidebar Default option in the Theme Options panel doesn’t work for me. It is set to “No; Do Not Show”. But all my single blog posts are with empty sidebar. (Display sidebar option for each of them is Default)
Another strange behaviour is that one empty sidebar (named sidebar1) exists and I didn’t create it…
P.S. I fixed the first issue by myself with child theme and the following code in functions.php
add_filter('kadence_display_sidebar', 'single_post_sidebar');
function single_post_sidebar($sidebar) { if (is_single()) { return false; } return $sidebar; }but anyway maybe this is а bug and should be fixed.
In forum: Virtue ThemeIn reply to: Shopping cart primary navigation
October 21, 2015 at 12:55 am #637031. You can add this css:
#nav-main ul.sf-menu ul#kad-head-cart-popup ul.cart_list li a { margin-right: 100px; display: block; line-height: 16px; } #nav-main ul.sf-menu ul#kad-head-cart-popup ul.product_list_widget li a img { float: left; padding-bottom: 10px; }2. For the sidebar you can use this:
ul.cart_list li a, ul.product_list_widget li a { font-weight: normal; font-size: 12px; line-height: 16px; }Ben
In forum: Virtue ThemeTopic: Store page layout
Hi,
The store page of my website in the mobile view looks very ugly all the products are displayed at one corner of the page. The woocommerce price filter sidebar seems to overlap the products. Even if I change the page layout to fullwidth, the products still remain shiftd at one corner of the screen. I am sending you the screenshots of the store page. Please have a look and help me solving this problem.Screenshot
Regards,
KapilIn forum: Virtue ThemeHi,
When I ad a product to my shopping cart and hover over the cart displayed in the primary navigation menubar it can not include all the product text.
Can ths be solved?
A 2nd question.
I’ve got another shopping cart in my sidebar, how do I controle the text in this? Right now it seems to be bold a little to big.
shop
Thank you
Br
AndersIn forum: Virtue ThemeIn reply to: Style one widget only
October 20, 2015 at 12:48 pm #63622Just to clarify the sidebar class is going to be the same for all pages. Widgets themselves all have different classes depending on the widget.
If you want to target one page then you can use the page id and the class would be:
.page-id-6 .kad-sidebar{ background-color: #E0EEEE; -webkit-box-shadow: rgba(0, 0, 0, 0.6) 0px 2px 6px; -moz-box-shadow: rgba(0, 0, 0, 0.6) 0px 2px 6px; box-shadow: rgba(0, 0, 0, 0.6) 0px 2px 6px; }Just change 6 with whatever page id your contact page is.
Ben
In forum: Virtue ThemeIn reply to: Help with php settings
October 20, 2015 at 12:40 pm #63618Hey,
you can change what shows in your search sidebar through the appearance > widgets page.You can also remove the sidebar by using this function in a child theme:
add_filter('kadence_display_sidebar', 'search_sidebar'); function search_sidebar($sidebar) { if (is_search()) { return false; } return $sidebar; }Ben
In forum: Virtue ThemeTopic: Style one widget only
Hello,
It appear that all widgets are .col-lg-3.col-md-4.kad-sidebar
How do I change the color of a widget on a certain page, eg the ‘contact’ page?I want this color on all pages and then #ffff on others
.col-lg-3.col-md-4.kad-sidebar{
background-color: #E0EEEE;
-webkit-box-shadow: rgba(0, 0, 0, 0.6) 0px 2px 6px;
-moz-box-shadow: rgba(0, 0, 0, 0.6) 0px 2px 6px;
box-shadow: rgba(0, 0, 0, 0.6) 0px 2px 6px;
}In forum: Virtue ThemeIn reply to: Help with php settings
In forum: Virtue ThemeIn reply to: Separating CSS – woocommerce and body
October 15, 2015 at 12:02 am #62850Yes then add this:
.woocommerce-account #ktsidebar .sidebar {
background:#fff;
padding:20px
}Ben
In forum: Virtue ThemeIn reply to: Separating CSS – woocommerce and body
October 14, 2015 at 11:38 pm #62847ok, found it. You are adding:
#billing_company, #billing_company_field, .kad-sidebar, div.product .product_meta {
display: none;
}That hides the sidebar.
Would you like to keep hiding the sidebar on the account page or would you like to show it? Looks like this: https://www.kadencewp.com/my-account/
Ben
In forum: Virtue ThemeIn reply to: Separating CSS – woocommerce and body
In forum: Virtue ThemeIn reply to: Change sidebar fonts
In forum: Virtue ThemeTopic: Change sidebar fonts
In forum: Virtue ThemeIn reply to: Separating CSS – woocommerce and body
October 14, 2015 at 1:12 pm #62775That looks like the my-account page while logged in. Which is supposed to have a sidebar. Are you removing the sidebar?
Ben
In forum: Virtue ThemeIn reply to: flip sidebar in store
October 14, 2015 at 12:20 pm #62742Hey,
There is no way to do that (child theme is always an option though). Sidebars are always below on mobile. Making people scroll past header and sidebar to reach content is not suggested.Using search and good navigation at the top is important for mobile browsing
Ben
In forum: Virtue ThemeIn reply to: Can`t go to next page ( mobile phones)
October 14, 2015 at 11:29 am #62728Hey,
did you see where I wrote that you added that css twice… It’s still on your site. You need to remove it that’s breaking the page.If you wanted the sidebar to be on the left you can use this css found here:
https://www.kadencewp.com/post-frequently-asked-questions/
@media (min-width: 992px) { body .main.col-lg-9 {float:right;} }You need to go into the custom css of your site and remove all of the times you added
#content .main { float: right; }Ben
In forum: Virtue ThemeIn reply to: flip sidebar in store
Hannah is there a way to make the sidebar menu display first on a mobile device? It looks confusing when they see all the products in a column and dont see the menu choices until the end of the scroll. I would rather have them filter, then see the store items and that would require the sidebar to be displayed before the main content of the store on mobile?
-
AuthorSearch Results


