Hi Guys
Appreciate all your support so far – many thanks for your time !
I have a question which I realise you might not be able to help with, but thought I would ask anyway 🙂
I have the JT Event Calendar installed as a 3rd party plugin. It works well however it keeps pushing the Kadence Virtue theme templates primary sidebar below the footer
See here
*Login to see link
When I create the event there is no dropdown so I can choose “Fullscreen” so it ends up using the Default Template which has the sidebar by default.
How can I change this Event Page to use “Fullscreen”? Is there some custom css coding I can use for that page??
Many thanks and keep up the great work 🙂
Cheers
Wallis
Hello Kadence Support,
Hi we use Virtue Premium.
I want to built showcase same as the Link : *Login to see link
And
*Login to see link
we use right sidebar on every page.
Can You give me some advice how to achieve this goal?
Always a forum fan. I appreciate and looking forward to your help
Best Regards,
Sam
Hello Ben,
if I turn on the plugin: Borlabs Cookie – Cookie Opt-in the page with the Blogpost overview only shows the widget sidebar, the header and the pagination, but not my blogposts anymore. I already tried to deactivate all the other plugins, but it is for sure the Borlabs Cookie – Cookie Opt-in.
Unfortunately – due to our new legal rights (DSGVO) I need this Plugin really urgent. And I have another domain with the Virtue Premium theme and there everything works fine. So I think, that there is something wrong – but I do not know, what I need to change.
Correct site: https://gabriele-luegger.de
Failure: https://spassbremsen.com
Thanks in advance.
Gaby
Hey,
There isn’t an issue with the filter, it’s a filter. There isn’t anything to fix. Its not a menu. What you are thinking it would do is not what it’s designed to do. It only filters the content on the page. It doesn’t work as a menu and query all the products in a category on your site and pull them into a page. For that, you need to use a menu.
I suggest adding a sidebar to your shop page and perhaps adding more navigation there.
Does that make sense?
Ben
1. You can use this css:
.sidebar section.widget_sow-button a > span {
display: block;
text-align: right;
}
2. If you want to artificially make the icons the largest size then you can left align your text based on that large size
.sidebar section.widget_sow-button a > span {
display: block;
text-align: left;
}
.sidebar section.widget_sow-button a > span .sow-icon-fontawesome, .sidebar section.widget_sow-button a > span .sow-icon-image{
width: 80px;
margin-right: 0;
}
3. but I personally think this looks odd but it’s similar to above making all your icons the width of your image:
.sidebar section.widget_sow-button a > span {
display: block;
text-align: center;
}
.sidebar section.widget_sow-button a > span .sow-icon-fontawesome, .sidebar section.widget_sow-button a > span .sow-icon-image{
width: 80px;
margin-right: 0;
text-align:left;
}
Ben
Hi again,
On the same site, I have 3 SiteOrigin icon buttons in the sidebar. The client has noted that the text is not aligned for all 3.
I have tried the options in the “Align” drop-down for each button, but they don’t seem to make any difference.
Is it possible to align the text on all 3 buttons so it is either:
right-aligned,
left aligned to the same point (i.e. not to the picture since they have different-sized icons)
centre-aligned about the same point (i.e. not including the picture since they have different-sized icons)
Hope this makes sense.
Kind regards
Phil.
Hi Team,
On my dev site, in the sidebar, the blue button uses a Site Origin button widget with an image instead of the icon. The image is constrained into a tiny space – like the icon would be. Please could you advise the CSS to enlarge the space available so that I can show the entire image.
I’m guessing say, 100px wide by about 50px high.
Many thanks,
Phil.
Hi David,
How are you currently adding your tags? You can link to your portfolio tags from any of your menus. When creating a menu from Appearance > Menus you can open the Screen Options tab on the top right of the page and select Portfolio Tags from the list. That will make it show in the left sidebar. Is that helpful?
Hannah
Hi,
I need a filter in the sidebar that lets users filter by brand. I have tried all the options included in Woo commerce as well as loads of plugins but they either don’t work or don’t show what i need. I only want the filter to show the brands from products that are listed on the page, not the whole site. What i need is like what you get when you turn on the ‘Show Category Filter on Category Pages’ except i need it in the sidebar instead of at the top of the page.
Please do you know how i can achieve this as it’s driving me mad! My site is http://www.ethicalernie.co.uk
Thanks
Graham
In your theme options > header and footer scripts (if you don’t see this enabled in your theme options > theme extensions).
add this in the footer scripts section:
<script type="text/javascript">
jQuery(document).ready(function ($) {
if($(window).width() > 992){
var topOffset = $('body').hasClass('admin-bar') ? 66 : 34;
var bottomOffset = $('#containerfooter').height() + 30;
$('.sidebar').sticky({topSpacing:topOffset, bottomSpacing:bottomOffset, getWidthFrom:".kad-sidebar"});
}
});
</script>
Ben
Hi Ben. ideally the whole sidebar
or at least the sharing buttons
Thx
Dan
Hey,
You can use this css:
.single-product .main.col-lg-9.col-md-8.kt-sidebar.kt-sidebar-left {
float: left;
}
Just paste that into your custom css box in Theme Options > Custom CSS.
Hope it helps!
Hannah
Hello! HOW could i replace the sidebar on single product page? *Login to see link i want to move it to the right side/ Thank you!
Omg my website is actually missing. Only sidebar and footer is showing. I already deactivated all plug ins but then the webside was fully blank. Can you please help me?
*Login to see link
Hi,
I’ve been adding products to my website and all is well apart from one category. In this one they show all weird and the sidebar isn’t in the correct place. Please can you let me know how to sort this out?
*Login to see link
Thanks
Graham
You can do it with css like this:
.search-results div#ktmain {
width: 100%;
}
.search-results .sidebar {
display: none;
}
Add that in your theme options > advanced settings.
If you prefer a php method you can do this through a hook in a child theme as well.
Ben
Hi there,
I’m not sure what I’ve done, but the sidebar has started appearing on all the template pages. I have only been in theme options, not added or changed any code. Can you advise me on how to restore the templates to their original settings?
Thanks.
Saskia
I added the Modern Tribe Event Calendar. I also disabled the sidebar. Can I center the calendar on the page?
~ M
This CSS would target all your archive pages:
.archive .main.col-lg-9.col-md-8.kt-sidebar.postlist {
width: 100%;
}
.archive .sidebar {
display: none;
}
Does that work for you?
Hannah