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: Virtue ThemeIn forum: Ascend Theme
In reply to: Display sku in shop pages
Thank you so much Ben, it’s works!!!
Only a little thing (maybe I’m wrong): my functions.php in child theme doesn’t work. When I’ve put the code in functions theme parent yes. My child theme path is named ascend_premium_child, inside there is style.css file and function.php
Inside style.css there is this code:/*
Theme Name: Ascend Premium Child
Theme URI: http://example.com/ascend-premium-child/
Description: Ascend Premium Child Theme
Author: Kadence Themes
Author URI: http://example.com
Template: ascend_premium
Version: 1.0.0
Tags: light, dark, two-columns, right-sidebar, responsive-layout
Text Domain: ascend-child
*//* Theme customization starts here
————————————————————– */Is there something wrong or is correct?
Thank you againIn forum: Virtue ThemeIn reply to: How to remove footer from woocommerce pages?
May 30, 2019 at 12:11 pm #227168in a child theme functions.php file you can add:
add_action('wp_head', 'remove_footer_from_woo' ); function remove_footer_from_woo() { if(class_exists('woocommerce') ) { if( is_woocommerce() || is_cart() || is_checkout() ) { remove_action( 'virtue_footer', 'virtue_footer_markup' ); } } }In forum: Virtue ThemeIn reply to: Suggestion : Adding Quantity on Shop Page
Hey,
There isn’t a built-in function for that. This post explains how to create this if you’re using a child theme: https://aceplugins.com/how-to-add-a-quantity-field-to-shop-pages-in-woocommerce/Hannah
In forum: Pinnacle ThemeIn reply to: Custom sidebars for different blog categories
In forum: Pinnacle ThemeIn reply to: Custom sidebars for different blog categories
I did try that, but it doesn’t assign the same sidebar to the individual post. For example, here’s a test page I created following your method: https://www.copelandcompany.com/events-and-workshops-page/.
And here’s a post that should show a specific sidebar just for events, but is instead pulling the default archives sidebar: https://www.copelandcompany.com/events-and-workshops/navigating-open-permits-surveys-workshop-realtors/
So I’m looking for maybe a more hard-coded solution. I’m familiar with PHP and I have a child theme. Maybe I can build individual archive-CAT.php files?
In forum: Pinnacle ThemeIn reply to: WooCommerce Category Page
May 28, 2019 at 3:17 pm #226882Did you try deactivating that plugin? It’s doing something to the archive titles. Pinnacle calls the titles earlier in the page because of how the page titles are set up. That could be why it’s showing the error in pinnacle. Either way, it doesn’t change that the plugin is creating the issue.
You can hack at a fix using a child theme and custom functions to unhook whatever that plugin is doing.
Ben
In forum: Pinnacle ThemeIn forum: Virtue ThemeIn reply to: posts shortcode
Actually, we were able to work up some css that should do the trick:
.kad_blog_item:nth-child(3n+1) h5.entry-title { color: #EB427A; } .kad_blog_item:nth-child(3n+2) h5.entry-title {color: #DE7523; } .kad_blog_item:nth-child(3n+3) h5.entry-title {color: #006CAF; }Just paste that into your custom css box in Theme Options > Advanced Settings.
Hannah
In forum: Pinnacle ThemeIn forum: Pinnacle ThemeIn forum: Virtue ThemeIn reply to: posts shortcode
Looking into this a bit more I’m not actually sure that it’s possible to set it up. At least not without editing the theme files through a child theme. Each title does not have its own class so you can’t select one title specifically. I’ll flag this for the developer to provide any other insight he has.
Hannah
In forum: Virtue ThemeIn reply to: Customize blog entries categories
Hiya,
I’m really scratching my head. I’m using the testimonial carousel widget in the Footer Column 1 widget, but it defaults to the page of ITS choice, rather than letting me save mine. It’s basically choosing the first page in the drop-down list in the widget. When I hit save on my selected page, it just reverts.
Cheeky! What I’ve done is re-titled my chosen page so that the widget works, but that’s not ideal. I’ve tricked it…
The site is at taylorwestandco.uk
I’m using a child theme. Might help to know that.
What am I missing here?
Thanks!
Valerie
In forum: Ascend ThemeIn reply to: Display sku in shop pages
May 27, 2019 at 9:30 am #226744In a child theme functions.php file you would add something like this:
add_action( 'woocommerce_shop_loop_item_title', 'custom_loop_show_sku', 30 ); function custom_loop_show_sku(){ global $product; echo '<span class="custom_sku">SKU ' . $product->get_sku() . '</span>'; }Ben
In forum: Ascend ThemeIn reply to: Display sku in shop pages
May 24, 2019 at 3:50 pm #226633You can always code things with a child theme, where exactly are you wanting this to show? I understand what page but where in terms of do you want it below the title? or below the add to cart?
Ben
In forum: Ascend ThemeHey John,
There isn’t a built-in function to adjust this. You would need to use a child theme and edit the portfolio template. Or if you wanted you could just use a carousel shortcode like this:
[gallery ids="21,22,23,24" type="carousel" columns="2" lightboxsize="large" speed ="1000"]Hannah
In forum: Ascend ThemeIn reply to: Testimonial Image Size
May 23, 2019 at 10:14 am #226458Hey,
Yes, you do need a child theme, It won’t break your site you would just upload and activate it,
https://www.kadencewp.com/child-themes/In your child theme functions.php file you would add this:
add_action('init', 'child_init'); function child_init() { add_filter('kt_testimonial_grid_image_width', 'my_custom_tesimonial_image_size'); add_filter('kt_testimonial_grid_image_height', 'my_custom_tesimonial_image_size'); function my_custom_tesimonial_image_size() { return 300; } }Ben
In forum: Ascend ThemeIn reply to: Testimonial Image Size
Hey Hannah,
Reading up on some material, I think I know what broke the code – late last night or earlier this morning I installed an update to the Ascend Premium Theme. I now understand what Child Themes are for! I’ll wait to hear from you on what you think I should do next.
In forum: Ascend ThemeTopic: Testimonial Image Size
Just launched (WOOHOOO!)
I had the testimonial image size adjusted from the default 60×60 to 300×300, and it was working, and BONUS: not blurry from the image being stretched, it actually pulled in the new image size. Then, suddenly it was gone. I fixed it. Now it’s not working again for the second time. The image size is correct, but it’s now stretching the images. And I can’t remember how I fixed it the first time it disappeared. It was working yesterday, so not sure what changed that it would have broken again.
This is the code I was using that worked up until today, and I still have it in the Theme Options Custom CSS:
.testimonial-img img {
width: 300px !important;
height: 300px !important;
}I see some solutions in your support forum that say to switch to Child Theme and insert specific code. Will that be my best option, and in doing so, will changing to the child theme screw with any of the layout/design of my site?
-
AuthorSearch Results


