Important:
This support area is for Kalium 3 users only.
Support for Kalium 4 has moved to our new platform at support.laborator.co.
If you’re using Kalium 4, please create a new account there using your email and license key. A password will be sent to you automatically.
Hi :)
I have a problem with loading icons for liked products. I can't find a solution to this problem in the whishlist widget.
Attached files: whishlist.jpg
Hi there,
Please share your website login credentials so I can test this. To safely include your credentials click the Insert Credentials button in the editor toolbar (see how), or you can create a temporary login without a password (see how).
Best regards,
Laborator Team
Hi there,
I just checked it and it seems to work even when logged in or logged out:
Best regards,
Laborator Team
Hi there,
Sometimes it works because I added java script code. When you start deleting products from the basket, the icons stop working. should I remove this code?
I will also try to add the certificate and see if it changes anything.
Best regards
Marcin
Attached files: kod java.jpg
Will you be able to find a solution?
Hi,
I have updated the code you added:
function updateIcons() { document.querySelectorAll('.share-button i:not(.fa-envelope-o)').forEach(e => { e.classList.replace('fa', 'fab'); }); document.querySelector('.fa-pencil')?.classList.replace('fa', 'fas'); } document.addEventListener("DOMContentLoaded", function() { updateIcons(); jQuery('body').on('removed_from_wishlist added_to_wishlist', updateIcons); });And the icons are properly working:
https://d.pr/v/ODZq6P
Hi Arling,
It seems that the icons work better. The problem is still when I try to edit the wishlist.
best regards
Marcin
Attached files: edit list.jpg
Hi,
I have applied the following code in functions.php and removed the previous one:
add_action( 'yith_wcwl_wishlist_after_wishlist_content', function() { echo '<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css" integrity="sha512-5A8nwdMOWrSz20fDsjczgUidUBR8liPYU+WymTZP1lmY9G6Oc7HlZv156XqnsgNUzTyMefFTcsFH/tnJE/+xBg==" crossorigin="anonymous" referrerpolicy="no-referrer" />'; } );This solved that issue: https://d.pr/v/XCuDAj
works great :) thanks
I just have one more question. Do you know if it is possible to change the name of the field indicated in the attachment at all? This is a description field that is permanently added somewhere, and I would like to change its name.
Best regards
Marcin
Attached files: description field in product.jpg
Hi Marcin,
I have added this code in functions.php and it changes the title:
add_filter( 'woocommerce_product_tabs', function( $tabs ) { $tabs['description']['title'] = 'Custom Title'; return $tabs; } );See the result:
(view large image)
Save this code snippet for future uses in case you want to change the tabs title.
Thanks a lot. Works great :)
Best regards
Marcin
Hello again :),
I have two issues with the template that I am unable to resolve on my own.
The first issue concerns the alignment of the text within the buttons, the number of products in the cart, etc. They are slightly off-center. Below, I am providing examples. Please help me center them properly.
The second issue involves modifying the product card template. I would like the product ID to be placed below the product name, aligned to the left. I would also like the category to be removed. I am also sending a picture of how I would like it to look.
Please make the necessary changes or give some tips ;)
Thank you and best regards,
Hi there,
I am sorry but I am unable to view these pictures, as they are links from Gmail and thus not visible to us.
Can you please give me the URL's of the pages that have issues and I'll check them.
maybe the attachment will help
Attached files: 23213.jpg
111.jpg
Hi,
I have added the following code:
// Reposition the product ID add_action( 'init', function() { remove_action( 'woocommerce_product_meta_start', 'aurum_woocommerce_display_product_id_on_product_meta' ); add_action( 'woocommerce_single_product_summary', 'aurum_woocommerce_display_product_id_on_product_meta', 8 ); } );Which has respositioned the product ID below the title:
(view large image)
As for the cart buttons, I am sorry but I do not get the problem, can you please be more specific?
P.S. Please note that the following code that I have added in your theme functions (during this time) should be stored safely because when you update the theme it will be overwritten (removed):
// Fix the issue with FontAwesome icons add_action( 'yith_wcwl_wishlist_after_wishlist_content', function() { echo '<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css" integrity="sha512-5A8nwdMOWrSz20fDsjczgUidUBR8liPYU+WymTZP1lmY9G6Oc7HlZv156XqnsgNUzTyMefFTcsFH/tnJE/+xBg==" crossorigin="anonymous" referrerpolicy="no-referrer" />'; } ); // Change the description tab title add_filter( 'woocommerce_product_tabs', function( $tabs ) { $tabs['description']['title'] = 'Informacje dodatkowe'; return $tabs; } ); // Reposition the product ID add_action( 'init', function() { remove_action( 'woocommerce_product_meta_start', 'aurum_woocommerce_display_product_id_on_product_meta' ); add_action( 'woocommerce_single_product_summary', 'aurum_woocommerce_display_product_id_on_product_meta', 8 ); } );