Bonn
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Kadence] single product image on hover with gallery first imageHi there,
Try adding this code snippet:
if ( ! function_exists( 'woocommerce_show_product_images' ) ) {
function woocommerce_show_product_images() {
global $product;
if ( ! $product ) {
return;
}
$post_thumbnail_id = $product->get_image_id();
$main_image = wp_get_attachment_image(
$post_thumbnail_id,
'woocommerce_single',
false,
array( 'class' => 'wp-post-image main-image' )
);
$attachment_ids = $product->get_gallery_image_ids();
$secondary_image = '';
$has_second_image = false;
if ( $attachment_ids && isset( $attachment_ids[0] ) ) {
$secondary_image = wp_get_attachment_image(
$attachment_ids[0],
'woocommerce_single',
false,
array( 'class' => 'secondary-image' )
);
$has_second_image = true;
}
$container_class = 'woocommerce-product-gallery images custom-product-slider ' . ( $has_second_image ? 'has-hover-slide' : '' );
echo '<div class="' . esc_attr( $container_class ) . '">';
echo $main_image;
if ( $has_second_image ) {
echo $secondary_image;
}
echo '</div>';
?>
<style>
.custom-product-slider {
position: relative;
overflow: hidden;
display: block;
}
.custom-product-slider img {
display: block;
width: 100%;
height: auto;
transition: transform 0.4s ease-in-out;
backface-visibility: hidden;
}
.custom-product-slider .secondary-image {
position: absolute;
top: 0;
left: 0;
transform: translate3d(100%, 0, 0);
z-index: 2;
}
.custom-product-slider.has-hover-slide:hover .main-image {
transform: translate3d(-100%, 0, 0);
}
.custom-product-slider.has-hover-slide:hover .secondary-image {
transform: translate3d(0, 0, 0);
}
</style>
<?php
}
}I hope this helps, and let us know if that works.
Forum: Themes and Templates
In reply to: [Kadence] Menu isn’t showing on the headerHi @humzii1123
Thanks for sharing your experience. It sounds like the issue is related to LiteSpeed’s caching settings.You may need to adjust some of the LiteSpeed options, especially those related to JavaScript optimization, as they can sometimes interfere with how the mobile menu functions.
Try disabling JS Combine or JS Deferred one at a time, and be sure to clear the cache after each change to test.
If the issue continues, we recommend contacting LiteSpeed support for further assistance with the best settings for your setup.
Forum: Themes and Templates
In reply to: [Kadence] Update Failed error messageHi @chrilles
Just checking in on this topic. Do you still need assistance here?Please note that you can also submit a support ticket via these channels.
- FREE Users: https://www.kadencewp.com/help-center/free-support/
- Premium Users: https://www.kadencewp.com/help-center/premium-support/
Thank you for your understanding!
Hi there,
Thanks for the request.
I will forward this to our development team.
Let me know if there’s anything else we can help you with.
Forum: Plugins
In reply to: [Kadence WooCommerce Email Designer] How to add custom checkout filedHi there,
The Kadence WooCommerce Email Designer plugin modifies the appearance of WooCommerce emails but doesn’t alter their core content; all the content still originates from WooCommerce.
To determine if the Kadence plugin is causing your checkout editor issue, try disabling the Kadence WooCommerce Email Designer plugin and then check if the custom fields appear in the email. This will help us identify if the plugin is contributing to the issue.
Please let us know the results. We’re here to assist you further!
Hi Bastian,
Thanks for the link.
Currently, the layout of Post Grid/Carousel block is not designed to work like this.
If you would like to submit a feature request for this, you can submit it here: https://www.kadencewp.com/kadence-blocks/feature-requests/
Keep in mind though that we can’t give you a timeline for when it will be added, since the development team has to consider a lot of different factors before implementing new features.
Let us know if we can help you further.
Hi Bastian,
The Kadence theme or blocks do not have a carousel or gallery that will show all the pictures just by hovering.
Could you share a link or an example of the type of carousel you’re referring to? This will help me understand exactly what you’re looking for.
Thanks!
Forum: Themes and Templates
In reply to: [Ascend] Page Header TitleHi Murray,
Thanks for the update, and apologies for the delayed response.
Forum: Themes and Templates
In reply to: [Ascend] Sticky header not workingHi Muhammad,
Apologies for the delayed response and thank you for your patience.
It maybe a caching issue.
Can you try clearing your website cache? https://www.kadencewp.com/help-center/docs/kadence-theme/clearing-your-website-cache/
Hi there,
I checked the page you mentioned, and I was unable to replicate the issue.
Checking on the painting will redirect me to the portfolio page.
Here’s a video: https://share.zight.com/kpueA50g
Have you sorted this out already?
Hi,
There is no built-in option for this, but you can do this by adding custom CSS.
.kb-posts .entry-summary p:after {content: '…';}I hope this helps, and let us know if we can assist you further.
Hi,
Do you want to change the Submit Button label? If yes, you can change it directly. Here’s a video: https://share.getcloudapp.com/6qubJJEO
I hope this helps, and let us know if we can assist you further.
Forum: Themes and Templates
In reply to: [Kadence] Author Link on Post Meta and Archive PagesHi there,
Try adding this custom code snippet:
add_filter('kadence_author_use_profile_link', '__return_false');You can add this using the Code Snippets plugin: https://www.kadencewp.com/kadence-theme/knowledge-base/advanced/how-to-add-a-custom-filter-or-function-with-code-snippets/
Hope this helps.
Forum: Themes and Templates
In reply to: [Virtue] Latest WordPress version – outdated theme noticeHi Sam,
The template notice is just a notice, it’s not an issue, and nothing in the templates would affect your site.
Other than that, the theme templates for WooCommerce should still work correctly. Our Development team is already aware of this issue and is working on fixing it.
Hope this helps and let us know if we can assists you further.
Regards,
BonnForum: Themes and Templates
In reply to: [Kadence] How to add Quote button to Footer?Hi Mike,
Apologies for the late response.
I checked your site and the screenshots you provided, and they look different.
Have you sorted this out already?