Hi!! I'm using WPC product Bundles for WooCommerce and it works really fine but I would like to know if there's a chance of customize the text that i'm marking on blue on the next attachment.
I have transferred your ticket to one of our developers so that he can check and give you further help. He might need to further discuss with you, so please in touch.
He'll start working on this and will be responding as soon as he's available for support.
Please stay patient meanwhile cause this might take some time under our current heavy workloads.
Best regards.
-----------
PS: Since once a ticket is assigned to a developer, other members in our team cannot read or receive comments anymore, in case you would like us to help you update the progress of your ticket, kindly submit a new ticket so that our Support Agent can help you check and urge the assigned developer to reach back soon.
add_action( 'wp_enqueue_scripts','woosb_wp_enqueue_scripts'); function woosb_wp_enqueue_scripts(){ wp_localize_script( 'woosb-frontend', 'woosb_vars', array( 'alert_selection' => esc_html__( 'Please select some product options for [name] before adding this bundle to the cart.', 'woo-product-bundle' ), 'alert_empty' => esc_html__( 'Please choose at least one product before adding this bundle to the cart.', 'woo-product-bundle' ), 'alert_min' => esc_html__( 'Please choose at least [min] in the whole products before adding this bundle to the cart.', 'woo-product-bundle' ), 'alert_max' => esc_html__( 'Please choose maximum [max] in the whole products before adding this bundle to the cart.', 'woo-product-bundle' ) ) ); }
Hi!! I'm using WPC product Bundles for WooCommerce and it works really fine but I would like to know if there's a chance of customize the text that i'm marking on blue on the next attachment.
Thank you and best regards!!
Hi Ignacio,
Thanks for the details.
I have transferred your ticket to one of our developers so that he can check and give you further help. He might need to further discuss with you, so please in touch.
He'll start working on this and will be responding as soon as he's available for support.
Please stay patient meanwhile cause this might take some time under our current heavy workloads.
Best regards.
-----------
PS: Since once a ticket is assigned to a developer, other members in our team cannot read or receive comments anymore, in case you would like us to help you update the progress of your ticket, kindly submit a new ticket so that our Support Agent can help you check and urge the assigned developer to reach back soon.
Janilyn T. - WPClever Support Agent
Hi Ignacio,
You can use this to change woosb alert:
add_action( 'wp_enqueue_scripts','woosb_wp_enqueue_scripts');
function woosb_wp_enqueue_scripts(){
wp_localize_script( 'woosb-frontend', 'woosb_vars', array(
'alert_selection' => esc_html__( 'Please select some product options for [name] before adding this bundle to the cart.', 'woo-product-bundle' ),
'alert_empty' => esc_html__( 'Please choose at least one product before adding this bundle to the cart.', 'woo-product-bundle' ),
'alert_min' => esc_html__( 'Please choose at least [min] in the whole products before adding this bundle to the cart.', 'woo-product-bundle' ),
'alert_max' => esc_html__( 'Please choose maximum [max] in the whole products before adding this bundle to the cart.', 'woo-product-bundle' )
)
);
}
Best regards,
Henry N.