Eze
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Kadence] kadence buttonHi @penelope323,
Glad you reached out, happy to help.
I noticed your homepage’s “The Crafter’s Mind” button is not connected to a URL. When you edit your page, can you confirm if the URL is still in the Button Link field? Here is a screencast for your reference:
https://share.zight.com/Kou8mkQ9If there is no URL in the button link field, kindly re-add the link as shown in this screencast and see if this issue persists:
https://share.zight.com/6qu1RoBoSee more troubleshooting steps:
https://www.kadencewp.com/blog/how-to-troubleshoot-your-website/Please let us know how this goes and if we can help you further.
Cheers,
EzeForum: Themes and Templates
In reply to: [Kadence] Delivery costs do not add up in the cartHi @pdmedia,
Thank you for the update.
I am unable to replicate this issue on my website. The shipping cost of products in a new category accrued as expected. I tested the products in this category https://phoenix-arts.pl/kategoria-produktu/farby/farby-do-tkanin/ again and the shipping cost added up. Here is a screencast for your reference:
https://share.zight.com/X6ujWnBqCan you confirm if you have been able to resolve this?
If the issue persists, I recommend you contact WooCommerce to see if they have any insight on what could cause this.
You can also send us a support ticket to investigate this further:
https://www.kadencewp.com/free-support-tickets/Cheers,
EzeForum: Themes and Templates
In reply to: [Virtue] Formatting of products & widget areaHi @aussielats,
Glad you reached out, happy to help.
I am unable to replicate this issue on my website with PHP 8.3/ 8.0 and Virtue theme. Here is a screencast for your reference:
https://share.zight.com/wbuq1ydQIt appears that your single product pages are broken. To troubleshoot this, please refresh permalink https://www.kadencewp.com/blog/common-wordpress-fixes/
Can you confirm if you disabled all the plugins except the WooCommerce plugin to see if the issue persists?
Additionally, you can deactivate the WooCommerce plugin, delete it and reinstall it afresh.
If the issue persists, please send us a support ticket so we can investigate this further:
https://www.kadencewp.com/free-support-tickets/I hope this helps. Please let us know how we can help further.
Cheers,
EzeForum: Themes and Templates
In reply to: [Kadence] The menu does not work in a postHi @ocio132,
Glad you reached out, happy to help.
I can confirm this issue on your website, but unable to replicate it on my website. Here is a screencast for your reference:
https://share.zight.com/nOu2zKy4To troubleshoot this, please clear Perfmatters website cache:
https://www.kadencewp.com/help-center/docs/kadence-theme/clearing-your-website-cache/See more troubleshooting steps:
https://www.kadencewp.com/blog/how-to-troubleshoot-your-website/I hope this helps. Please let us know how we can help further.
Cheers,
EzeForum: Themes and Templates
In reply to: [Kadence] Some footer text not showing on mobileHi @jimtron,
Glad you reached out, happy to help.
This number is not visible because the Safari browser on iPhone recognises numbers as a link and the text link color is the same as your footer background color.
To resolve this, kindly change your footer widget for the number Text (Adv) block Link color to 808a9c. Here is a screencast for your reference:
https://share.zight.com/geuKv6e2This way, the number font color on iOS web browsers (Safari, Brave) will be the same as on desktop view.
I hope this helps. Please let us know how we can help further.
Cheers,
EzeHi @someone3210,
Glad you reached out; happy to help!
When working with WordPress WooCommerce customizations, here’s how to approach different tasks:
CSS:
- Use CSS for styling existing elements, such as changing font colors, background colors, margins, and padding.
- Example: The CSS you provided,
woocommerce div.product form.cart .woocommerce-variation-add-to-cart { margin-top: 0.5em }, is useful for adjusting layout and appearance without altering HTML structure. You can find the correct CSS class using the browser’s Inspect Element tool.
PHP:
- For altering the structure of elements on your site, such as adding a padlock icon to the “Add to Cart” button, PHP is the best approach. PHP allows you to dynamically modify content at the server level before it reaches the browser.
- Example: To prepend a padlock icon to the “Add to Cart” button, you can use the following PHP code:
add_filter('woocommerce_product_single_add_to_cart_text', 'add_padlock_icon_to_cart_button'); function add_padlock_icon_to_cart_button($button) { $button_new = '🔒 ' . $button; // Add the padlock icon before the button text return $button_new; }Here is how to add a custom filter or function with Code Snippets plugin:
https://www.kadencewp.com/help-center/docs/kadence-theme/how-to-add-a-custom-filter-or-function-with-code-snippets/How It Works:
- Filter Hook: The
woocommerce_product_single_add_to_cart_textfilter modifies the button text. - Custom Function: The function
add_padlock_icon_to_cart_buttonadds the icon to the button text.
Learn more about WordPress and WooCommerce hooks: WordPress Hooks, WooCommerce Hooks.
Summary:
- Use CSS for styling existing elements.
- Use PHP for structural changes or dynamic content modifications.
I hope this helps. Please let us know how we can help further.
Cheers,
EzeForum: Themes and Templates
In reply to: [Kadence] Delivery costs do not add up in the cartHi @pdmedia,
Glad you reached out, happy to help.
I have confirmed that the issue is specific to the products in the mentioned category. The cause could be due to a few possibilities, such as plugin conflicts, custom functions, or a misconfiguration in your shipping settings.
To troubleshoot this issue:
- Review Shipping Settings
- Check the settings of products in this category against those in other categories to spot any discrepancies.
- Temporarily disable your plugins one by one to identify if a specific plugin is causing the issue.
- If you have implemented custom code snippets, review them to make sure they apply correctly to all categories.
I hope this helps. Please let us know how we can help further.
Cheers,
EzeHi @someone3210,
You can use this custom CSS to change the Add to Cart background color, in-stock and out-of-stock font colors on the single product pages:
body.single-product.woocommerce button.button.alt { background:red; } body.single-product.woocommerce div.product .stock { color:red; } body.single-product.woocommerce div.product .out-of-stock { color:blue; }Here is how to add the custom CSS to your website:
https://www.kadencewp.com/help-center/docs/kadence-theme/how-do-i-add-custom-css/You can further adjust the colors to your preference:
I hope this helps. Please let us know how we can help further.
Cheers,
EzeForum: Themes and Templates
In reply to: [Kadence] Largest Contentful Paint element 3,680 msHi there,
Glad you reached out, happy to help.
Are you referring to the Gourmet Burger starter template?
I noticed the Largest Contentful Paint element is for the H1 on mobile view.
To resolve this:
1. Enable “Load Google Fonts Locally” in the theme Customizer > General > Performance. Here is a screencast for your reference:
https://share.zight.com/QwuoPK072. Reduce the font size on mobile view
Here is our blog post on how to speed up your website:
https://www.kadencewp.com/blog/need-for-speed/
I hope this helps. Please let us know how we can help further.
Cheers,
EzeHi there,
Glad you reached out, happy to help.
You can use this code snippet to replace the “Add to Cart” text with “Add to Bag” on the single product pages:
function custom_single_product_add_to_cart_text() { return __( 'Add to Bag', 'woocommerce' ); } add_filter( 'woocommerce_product_single_add_to_cart_text', 'custom_single_product_add_to_cart_text' );You can use this code snippet to replace the “Add to Cart” text with “Add to Bag” on the whole site:
function custom_add_to_cart_text() { return __( 'Add to Bag', 'woocommerce' ); } add_filter( 'woocommerce_product_add_to_cart_text', 'custom_add_to_cart_text' ); // For shop page add_filter( 'woocommerce_product_single_add_to_cart_text', 'custom_add_to_cart_text' ); // For single product pageHere is how to add the code snippet to your website using the Code Snippets plugin:
https://www.kadencewp.com/help-center/docs/kadence-theme/how-to-add-a-custom-filter-or-function-with-code-snippets/Watch this demo screencast of what happens when the custom filter code is added to your website:
https://share.zight.com/JruEdbz7I hope this helps. Please let us know how we can help further.
Cheers,
EzeForum: Themes and Templates
In reply to: [Kadence] footer mobile versionHi @freddyeee,
Glad you reached out, happy to help.
To achieve this:
1. Create a custom footer menu and add items to the menu as preferred
2. Add a widget to the footer
3. Add a Row Layout block to the footer widget
4. Add a Navigation Menu block to the Row Layout Section and select your custom footer menu
5. Check Collapse sub menu items
5. Hide the Row Layout on Desktop and Tablet to only show this footer menu on mobileHere is a screencast for your reference:
https://share.zight.com/NQuA8Wm8I hope this helps. Please let us know how we can help further.
Cheers,
EzeForum: Themes and Templates
In reply to: [Kadence] Can’t edit pages and footerHi @freddyeee,
Glad you reached out, happy to reach out.
I am unable to replicate these issues. I can edit all my pages and access the theme Customizer (Footer) settings. Here is a screencast for your reference:
https://share.zight.com/Wnu8oz9vTo further troubleshoot this and test for browser conflict, please log in to your dashboard on an incognito or different browser and see if the issue persists.
Please let us know how this goes.
Cheers,
EzeForum: Themes and Templates
In reply to: [Kadence] Video intro with kadenceHi there,
Glad you reached out, happy to help.
Can you confirm if you added the video as the Row Layout background?
There is no built-in option to add an image as the last frame of a video using the Row Layout block.
If you added a YouTube video as the Row Layout background, the last frame would be your thumbnail image. You can explore adding the Video to YouTube with your logo and the thumbnail.
You can use a tool like canva.com to add the image as the last frame of a video and download the rendered video to use in the Row Layout.
I hope this helps. Please let us know how we can help further.
Cheers,
EzeForum: Themes and Templates
In reply to: [Kadence] Issue editing “typed text” with Text Adv blockHi there,
Glad you reached out, happy to help.
I am using the same version of WP, Kadence Blocks and Theme as you.
To edit the Typed Text settings, you simply need to click on the text, which will then show your existing settings.
Here is a screencast for your reference:
https://share.zight.com/X6uvPNQLCan you confirm if the settings do not show up when you click on the text?
If it doesn’t, to troubleshoot this:
– Clear your website and browser cache
– I used Google Chrome and if you are using the same, try using an incognito Window or change your browser.I hope this helps. Please let us know how we can help further.
Cheers,
EzeHi there,
Glad you reached out, happy to help.
I can confirm this on your website, but unable to replicate it on my website using a child theme. Here is a screencast for your reference:
https://share.zight.com/JruE9zo0To troubleshoot this, please try the following troubleshooting steps:
https://www.kadencewp.com/blog/how-to-troubleshoot-your-website/In the meantime, you can use this custom CSS to remove the pill shape button:
button.dropdown-nav-special-toggle { display:none; }Here is how to add the custom CSS to your website:
https://www.kadencewp.com/help-center/docs/kadence-theme/how-do-i-add-custom-cssWatch this demo screencast of what happens when the CSS code is added to your website:
https://share.zight.com/z8uo2vdgI hope this helps. Please let us know how we can help further.
Cheers,
Eze