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 'child theme'
-
AuthorSearch Results
-
In forum: Kadence Theme
Hi,
There is a conflct between the Virtue thema and Thrive. First i contacted them. Thrive says it’s a problem at the the side. This is what they say:
“After I made these changes, I reactivated your Virtue – Premium Child on your website.
Our plugin works with all themes that follow the WordPress codex, this means that your theme has custom scripts in it that conflict with our scripts, therefore it’s not something we can fix from our end. Please contact your Theme’s developers and let them know about this conflict. You can show them the below screenshot which contains the errors triggered in the console by their Theme:
Hope you can find the problem soon.
Cheers, Bjorn
In forum: Pinnacle ThemeIn reply to: showing boxes at the right side of Main Menu
In forum: Ascend ThemeIn reply to: Beaver Themer intagration
Ben,
Beaver Builder PowerPack got back to me and fixed the header / footer issue with their plugin. This is what they said
Thanks for writing to us and sharing the details. I will be happy to help you.
I was able to log in to the site and fix the issue.
Ascend Premium theme was previously not compatible with PowerPack Heade/Footer.
Since the theme had hooks to support custom header/footer, we have added a code in the child theme’s functions.php file to enable PowerPack’s header/footer functionality on the site.
I hope this helps! 🙂Thanks Jeremy
In forum: Ascend ThemeTopic: WebP – Lightbox Issue
I recently decided to try using the option in WP Rocket to enable WebP images. I noticed today that when I click on images on my site using the Ascend theme that they weren’t opening the larger image in lightbox anymore. I had a hunch it was something about how WP Rocket was changing the code with WebP images. Sure enough as soon as I turned this option off and cleared cache Lightbox was working properly again.
I’m honestly not sure if this is an issue I should address here or with WP Rocket. But since I have to start somewhere, here I am.
This is hardly a pressing issue. My site is working as it did before but it would be nice to have the option for WebP.
Any pointers in the right direction appreciated.
I’m using a child theme, so if there’s code I could add to resolve this I’m game. Or if you think I should address this with WP Rocket, let me know.
Thanks!
Mark
In forum: Kadence ThemeJuly 2, 2020 at 4:17 pm #252373Hi
I am working on a dev site on siteground, on a staging site. Deployed to main site, and all styling in dev site is lost. Before I start all over on the main site, any idea how this could happen and how I can fix it?
DEV site:
*Login to see linkMain site:
*Login to see linkUsing Kadence theme, with a child theme setup downloaded from
*Login to see linkIn forum: Virtue ThemeIn reply to: Theme / Plugin Conflict
July 2, 2020 at 11:44 am #252358Add this to your child theme functions.php file:
/** * Function to add support for ecn plugin. */ function custom_virtue_ecn_plugin_override( $template ) { $cpt = get_post_type(); if ( 'ecn' === $cpt ) { remove_filter( 'template_include', array( 'Kadence_Wrapping', 'wrap' ), 101 ); } return $template; } add_filter( 'template_include', 'custom_virtue_ecn_plugin_override', 20 );That should fix it.
Ben
In forum: Virtue ThemeTopic: Menu Search links to dev url
Hi – we have a site using the Virtue Bold child theme.
It was built on a temporary URL, and then switched over to the live domain when it was ready.
We have an issue though where the menu search still links to the old dev URL and gives a 404 error.
I have run a search and replace and it hasn’t resolved it.
Where can I go to change this manually? And what should I change it to?It isn’t live at the moment as we don’t want to have issues with the customer experience.
Thanks
In forum: Kadence ThemeIn reply to: +/- sign for the shopping cart
June 30, 2020 at 9:20 am #252238Hey,
Your child theme is breaking the output. You can add this css to fix:.custom-outputfield-quantity-addtocart .quantity .minus, .custom-outputfield-quantity-addtocart .quantity .plus { display: block; padding: 0; margin: 0; right:0; top:0; position: absolute; text-align: center; vertical-align: text-top; width: 20px; height: 20px; overflow: visible; text-decoration: none; font-weight: 700; cursor: pointer; line-height: 10px; font-size: 12px; color: #444; border: 1px solid #c6c6c6; border-left: 0; background: #f7f6f7; } .custom-outputfield-quantity-addtocart .quantity .minus { bottom: 0; right: 0; top:auto; border-top-left-radius: 0; border-top-right-radius: 0; }Ben
In forum: Kadence ThemeIn reply to: Kadence layer slider slide order
June 30, 2020 at 8:46 am #252234Hey,
Unfortunately, this isn’t possible through a child theme. The only way to do it would be to create a new shortcode, which is basically to say create a new plugin. It’s not what the Kadence slider is designed to do. If you are just showing images using a gallery shortcode would make more sense to me, with it you can set the order to random. This plugin would let you give the galleries a link: https://wordpress.org/plugins/gallery-custom-links/Ben
In forum: Kadence ThemeHello,
After updating to Viteu-pro 4.9.24 the +/- sign for the shopping cart has been placed above the number.
For this page I do use a child theme …(That I have ever had made by someone)
But you may still have a solution.
With kind regards,
CasperIn forum: Kadence ThemeIn reply to: Kadence layer slider slide order
Are you using a child theme? https://www.kadencewp.com/child-themes/
Hannah
In forum: Ascend ThemeIn reply to: Porfolio
June 29, 2020 at 11:27 am #252188Hey,
You would need a child theme.
https://www.kadencewp.com/child-themes/And then you would override the templates/content-loop-portfolio.php
On line 119 you would remove this:
echo '<a href="' . get_the_permalink() . '" class="portfolio-hover-item-link"></a>';Then on line 151 you would need to remove
<a href="<?php the_permalink(); ?>" class="portfolio-inner-link">And on 171 remove:
</a>Ben
In forum: Kadence ThemeIn reply to: Kadence layer slider slide order
Hey Phil,
Unfortunately, there isn’t a function for either of these within the Kadence layer slider. Sorry! There may be a plugin with a functionality for this. Or if you’re using a child theme you can add a custom line of code that would randomize the slide order. Let us know if you want to go that route.Hannah
In forum: Virtue ThemeIn reply to: Carousel Shortcode Length
June 25, 2020 at 11:08 am #252017Hey,
Using a child theme you can override the default templates/content-loop-testimonial.php file.on line 7 change from:
'limit' => 'true',to
'limit' => 'false',Ben
In forum: Virtue ThemeIn reply to: Carousel Shortcode Length
Hi Hannah
I did think of that… it works for me but when I hand over to the client I wonder if they will remember 🙂
So there isn’t anything i can put in my child themes functions to override the length?
I was going to use the other post / grid in the kadence blocks but the client really wants a location beside the name of the person at the top and the block doesn’t allow this function.
Thanks, Mel
June 24, 2020 at 9:22 pm #251976Hi I’m using a child theme of the basic Kadence theme ( I’m now thinking I should have used one of your premium themes – so please advise if this can’t be done with the basic theme). I am using gutenberg blocks, with Kadence blocks.
So, I have set the homepage to display latest posts – set to max of 3.
*Login to see linkI Like the style of this display and would like to create an archive page with similar style – probably with smaller post boxes, with pagination links. Tried creating an archive page with the post grid block, but don’t see how I can get the pagination?
As an alternative, I’d could use a widget that shows posts by year – this blog has a lot of posts from early 2000’s through to 2013 and is now being revived and used again. So, the archive monthly widget is a very awkward interface since there may only be one per month. Anyway, if there is a way to setup a year drop down, the display seems to use the same style as the blog posts on the home page. You can see the archive widget on a past page here:
*Login to see linkThanks in advance for your assistance.
In forum: Virtue ThemeIn reply to: Reply option in comments doesnt work
June 23, 2020 at 3:18 pm #251888Can you remove that code, I don’t have access to your child theme to remove it. You do not need that code to have replies work with Virtue. As you can clearly see from the demo. So please remove it so that I can see the original issue you were having.
Ben
In forum: Virtue ThemeIn reply to: Reply option in comments doesnt work
June 23, 2020 at 12:12 pm #251864Hey,
I opened your site, I noticed you had installed a child theme and that in your child theme functions.php file you have added this:add_filter( 'wpseo_remove_reply_to_com', '__return_false' );So now I’m really confused because that code prevents yoast from working to change the comments reply link. So I’m not sure I understand at all what you want.
Please help me understand, if you don’t want yoast to change the replay comments what are you wanting?
Ben
In forum: Kadence BlocksIn reply to: spacer weirdness
June 23, 2020 at 10:51 am #251860Hey Ben
It’s a child of twentytwenty. Barely started. No more than 10 or so changes to the parent and they only touch on the header, footer and links.
I’ve copied it here in case it’s of any use.
cheers
john
@charset “utf-8”;
/*
Theme Name: poem
Theme URI: http: //example.com/
Description: Child of twentytwenty
Author: John Clark
Author URI: http: //www.leadwhite.co.uk
Template: twentytwenty
Version: 0.1.0
*/@import url(“../twentytwenty/style.css”);
/* Hide header Footer and page title*/
#site-header {
display: none;
}
.footer-nav-widgets-wrapper, #site-footer {
display: none;
}
.entry-header {
display: none;
}/*adapted list stylings*/
ul {
list-style: none;
margin: 0;
padding: 0;
}
.entry-content p {
margin: 0 auto;
line-height: 100%;
}
a:link {
color: inherit;
text-decoration: none;
}
a:visited {
color: inherit;
}
a:hover {
color: #ED6F51;
text-decoration:underline!important;
}
a:hover::after {
content: “\2003″;
height:.75em;
width:.75em;
min-height: .75em;
min-width: .75em;
background-color: #ED6F51;
border-radius: 50%;
display: inline-block;
z-index: 2999999999;
position: relative;/* Go left*/
float: left !important;
left:-60px;
margin-right:-60px;/* Go Right*/
/*right:0;
float: right !important;*/
}
a:active {
color: darkorange;
}
/* my new classes*/
.myname {
margin-top: 60px !important;
line-height: 50% !important;
font-size: 43px;
margin: 0 auto;
}
.undername {
padding-bottom: 30px;
}
/* styling for listing with a border*/
ul.poem-box {
line-height: 80%;
margin-top: 0;
margin-bottom: 7px;
}
.poem-box li {
border: solid 1px rgba(0, 0, 0, 0.41);
padding-left: 10px;
padding-right: 20px;
padding-top: 0px;
padding-bottom: 5px;
margin-left: -10px;
display: inline-block;
font-size: .65em;
font-weight: 500;
}
.poem-red {
color: #ED6F51;
}
.poem-blue {
color: #80DCE8;
}
.poem-smallcaps {
font-variant-caps: all-petite-caps;
font-weight: bolder;
}
.poem-allcaps {
text-transform: uppercase;
}
.texty {
font-family:”Hoefler Text”, Garamond, “Times New Roman”;In forum: Virtue ThemeJune 23, 2020 at 9:22 am #251841Hey,
1. Your error says it ran out of memory at 41943040bytes… Which is 41MB since that isn’t close to 256MB I would guess you have a setting that is messing up. To be clear it’s totally normal for the theme to load something requesting 32768 bytes (0.03MB) or memory.2. The error regarding “create_function” is from your child theme. That is something you control. Check your child theme you likely need to update the PHP you’ve added in the functions.php file.
3. That error regarding “kadence_category_layout_css” is coming from your child theme: virtue_premium_child/woocommerce/archive-product.php line : 110.
The parent theme doesn’t have a function called kadence_category_layout_css. This simply means that you need to update your child theme.
I hope that helps!
Ben
-
AuthorSearch Results


