Hi Ben,
I’d like to place a space or two on the same line before the social links widget, which I have placed in the left sidebar. I just need to nudge the icons over so that they are in line with the text that is above them. Not <br>, but non-breaking spaces. Any quick solutions?
Thanks!
If you create a new product can you check and see if the right sidebar shows without having to change the select? My only guess now is that you had products built prior to me adding the default option, which would mean those products were originally saved to “primary sidebar”. I think I added the default option in version 2.1.1
Yes, setting both options on the product page to “Standard” and “Default” it will show the right sidebar. But this are the default options when I create a new product… There must be something wrong in the initialising of the product.
I’m trying to configure my blog page to not have a sidebar but it’s not working for some reason.
I have selected the “blog” page template, and selected to not show sidebar in the page template setting. I also turned off show sidebar in the “blog page options” section. The sidebar still shows.
Could anyone provide any insight?
*Login to see link
Lastly, is there a way to clone the virtual-premium-3 content?
🙂
.sidebar h3 {
margin-left: 20px;
}
That works, but why does the theme ignores the standard configuration, where I’ve specified another sidebar.
This can only be a workaround, it too complex to define it for every product.
Hi Ben,
currently my theme is always showing the standard-sidebar on my product pages (see Saisonende), but I have defined the correct sidebar in the theme setup.
What is wrong with the theme? I run the newest version 2.3.6.
Hi, my website is *Login to see link and i am wondering how to do the following:
1) Center the tagline underneath the logo
2) Customize the size, colours and the position of the product navigation filters (Primary Sidebar Widgets)
Thanks!
Hey Ben,
1.+2. I think I will keep the original two columns for the latest blogs posts on the home page.
3. Works fine – thanks!
4. The Blog is still not working in four columns like this example: http://themes.kadencethemes.com/virtue-premium/blog-grid-four-column/#
There is also a sidebar on the blog which I don’t want to use. I said not to use the sidebar on the blog page, but it’s still there …
I don’t know what to do … I made three blog posts to test the columns but it still uses just one column and a sidebar.
You can use the body class specific to the page, and add css for that. I did an example here: https://www.kadencewp.com/support-forums/topic/how-to-hide-header-footer-sidebars-menu-for-one-page/
Let me know if that doesn’t make sense.
Ben
Hmmm, those didn’t work – I am referring to the Custom Menu Widget placed in the left primary sidebar. Does that make a difference?
Thanks!
1.
.sidebar .current-menu-item > a {
color: #DA801B;
}
2. you talking about the border?
.sidebar .current-menu-item {
border-bottom:1px solid #DA801B;
}
Ben
Also, is it possible to highlight the menu line with a block (to the end of the sidebar) as opposed to just the text as a different colour? Both options would be great.
Hi Ben,
I hobbled this from something I found online, but it isn’t working. I am trying to adjust the sidebar menu widget to highlight the active page. This is what I used, are you able to tell me where it goes wrong?
#sidebar.widget .current-menu-item > a,
#sidebar.widget .current-menu-ancestor > a,
#sidebar.widget .current_page_item > a,
#sidebar.widget .current_page_ancestor > a {
color: #DA801B;
}
Thanks!
Greg
Ben,
It occurred to me that it would be nice to be able to do random posts in the sidebar.
My thought would be another widget similar to your Virtue Recent Posts but only in a radomizer version that would disregard whatever the most recent posts are that you have set in the Virtue Recent Posts.
In other word if I have 10 of my most recent posts showing in Virtue Recent Posts then I would be able to tell the new widget to ignore the first 10 posts chronologically before randomizing.
I have a margarita site and some of my best posts are never seen again after they drop to number 11.
Thanks,
Tom
Just tested it and it’s not working … strange.
There is also a sidebar on the blog which I don’t want to use. I said not to use the sidebar on the blog page, but it’s still there …
Hey,
1. I don’t see this? I see a shop page with a sidebar? Have you cleared your browser cache?
2. Did you add a cyclone slider using the shop settings in the theme options?
Ben
Hi there, I just updated the theme on my test site and I’m getting super wide shop pages, and what looks like a sidebar at the bottom (but there shouldn’t be anything there.) It wasn’t like this with the previous version. Have I done something wrong? or why would the shop pages now look like this?
Also, the cyclone sliders on my shop/category pages no longer show. =
*Login to see link
I’ve problems choose icons using info box with page builder.
Info box widget works in sidebar and footer.
Page Builder + Virtue: Info Box
Widget Info-box
WordPress 3.9
Virtue 2.3.2
Thanks.
Hey so it can all be done with a function that way you can keep all the edits in a child theme functions file. So for example, if you don’t want a sidebar on the event tribe then use this function:
add_filter('kadence_display_sidebar', 'tribe_sidebar');
function tribe_sidebar($sidebar) {
if (tribe_is_event_query()) {
return false;
}
return $sidebar;
}
That is assuming the tribe_is_event_query() is a conditional and will return a true or false.
Ben