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.
Hello guys,
Can anyone please help me with the following?
url: http://e76.af3.myftpupload.com/product/black-leather-loafer/
- I want to replace locations of the product price and product description showing in the above link. Don't know exactly where to find the related PHP file or CSS.
- In the mobile browser the footer widgets doesn't align and/or resize and it they (widgets) appear one top of each other. Is there any way to edit them? -Photo attached-
- I want to add an e-mail subscription in the footer. Any plugin suggestions?
- I also need to register customers via Facebook (Facebook connect) any plugins?
Thank you all.
Berat
Hi Berat,
— Add the following code to your functions.php file to change the order of price and description:
add_action( 'init', 'fix_wc_product_single_positions' ); function fix_wc_product_single_positions() { remove_filter( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 25 ); add_filter( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 ); }— We have done it this way because if you're using long menu titles then the footer widgets will be stretched and will mix with each other.
— The most popular plugin for subscriptions the E-mail subscriptions plugin, but we don't officially support it so I don't know if it will work or not with our theme.
— For this you can ask the WooCommerce team if they have any bridge plugin that connects WooCommerce to any social network.
Best regards,
Laborator Team