cathag
Forum Replies Created
-
All is worked fine and translated with PO file.
ThanksHi,
2- the upcoming latest version solved the problem, thanks
3- I wait for the updated PO file (so I can translate “minimum quantity” and “price per unit” too. Thanks
4- New problem: I’m opening a ticket on hasthemes.comHi,
1- sure (I hope I will never need to set different prices in products variations)
2- I don’t know how to update a plugin with a downloaded file
3- I tried to add the code to my functions.php file but it gives an error at line:
$upto_text = ' fino a ';
Syntax error, unexpected ‘=’, expecting T_PAAMAYIM_NEKUDOTAYIM
So I didn’t save the functions.php file
should I change = in :: ? or proceed with =?Isn’t it better add “up to” to a PO file? I mean: for the begining our website is in Italian but soon I will add other languages (english, french, spanish,…). I’m using the plugin loco translate for the moment.
Another problem I shown yesterday:
Just before the “add to cart button” ther’s a tab with:
“MINIMUM QUANTITY PRICE PER UNIT”
then ther’s a line with:
“137,00 €”I understood that 1 is a quantity and 37€ is the price but ther’s no space between the two so it seems that ther’s written 137€
And I need to translate it
And, for problem 1, how can I hide / translate / modify font size “UP TO” in discount label?
Hi,
Problem 1: I found a workarround Both retailer price value and wholesaler price value are seen in wholesaler price, and both 0% and real save amount are seen. Problem is on product variation: at wholesaler price, the first value seen is the retailer one because any variation doesn’t have a retailer price. Probably if I set a different price for a variation it will be seen. Same for %. It will be nice add an option: see only the default product variation information as woocommerce do with product price (I’m using the Atum Inventory plugin)Problem 2 isn’t solved: Wholesale price stay at 13px even if I change it on the design Wols tab
Problem 3 is solved: thanks
Got it,
ThanksI understood I can do it with the pro version. I already plan to buy it when my e-commerce site would be online but:
1- is it really possible/ recommanded or not with pro version
2- if yes, have you a guide about how to do it?
3- what is the correct syntax for placeholders? is there a list?
4- is there a more speedy support for the pro version (more than 5 days for an answer is – at less – not reactive! and not the support I need for a working e-commerce site).Forum: Plugins
In reply to: [Fluid Checkout for WooCommerce - Lite] checkboxes for terms and privacyYou’re my hero!
grazie mille di tutto
CatherineForum: Plugins
In reply to: [Fluid Checkout for WooCommerce - Lite] order summery row widthThanks: it works fine and now it’s very nice (I’m an happy girl)
Good news for the italian version
CatherineForum: Plugins
In reply to: [Fluid Checkout for WooCommerce - Lite] checkboxes for terms and privacyHi,
here the screenshot:
https://ibb.co/ZKDCJHDthe terms checkbox is the fluid checkout one and it has the same problem.
CatherineForum: Plugins
In reply to: [Fluid Checkout for WooCommerce - Lite] checkboxes for terms and privacyhere the checkout privacy policy checkbox plugin (I used an interne post to create it so ther’s the name/link of the source) :
<?php /** * Plugin Name: checkout privacy policy checkbox * Description: add a privacy policy checkbox to the woocommerce checkout * Plugin URI: https://tuttowp.it/gdpr-per-woocommerce/ * Author: Macesanu Madalin Florentin */ add_action( 'woocommerce_review_order_before_submit', 'ttwp_add_checkout_privacy_policy', 9 ); function ttwp_add_checkout_privacy_policy() { woocommerce_form_field( 'privacy_policy', array( 'type' => 'checkbox', 'class' => array('form-row privacy'), 'label_class' => array('woocommerce-form__label woocommerce-form__label-for-checkbox checkbox'), 'input_class' => array('woocommerce-form__input woocommerce-form__input-checkbox input-checkbox'), 'required' => true, 'label' => 'I tuoi dati personali ci aiuteranno a creare il tuo account, a supportare la tua esperienza utente in questo sito Web, e per altri scopi descritti nella nostra <a href="/privacy-policy">Informativa sulla Privacy</a>. Selezionando la casella, dichiari di aver letto e accettato la nostra informativa sulla privacy.', )); } // Mostra avviso se l'utente non accetta. add_action( 'woocommerce_checkout_process', 'ttwp_not_approved_privacy' ); function ttwp_not_approved_privacy() { if ( ! (int) isset( $_POST['privacy_policy'] ) ) { wc_add_notice( __( 'Per favore accetta la nostra informativa sulla privacy.' ), 'error' ); } }