Acowebs Support Team
Forum Replies Created
-
Hello,
Sorry for the delayed reply. If you want to change/translate the Add to cart button text in the archive/product listing page in case the product has additional fields, go to settings >> Custom product Addon >> Other settings >> Add to Cart button text.
refer: https://acowebs.com/guideline/plugin-docs-faqs/wcpa/wcpa-general-settings/#2_Contents/Stringsif you talk about the add to cart button on the product page, please use some translation plugin. there is no option to change the product page add to cart button text.
Thank you
Acowebs Support TeamHello
sure you can work this scenario using our WooCommerce Custom Product Addons Plugin.
you can display an addon field based on another addon field option selection using conditional logic ( refer: https://acowebs.com/guideline/plugin-docs-faqs/wcpa/setting-conditional-logic/ ) and add price for each option or can add price based on the options selected (refer: https://acowebs.com/guideline/plugin-docs-faqs/wcpa/pricing-custom-formula/ )And this feature is available only in premium version plugins
Hi,
You can change the border style of the color group buttons using below css selectors separately
.wcpa_form_outer .wcpa_form_item .color-group .wcpa_color label span.wcpa_clb_border {
border: 7px solid #222;
}.wcpa_form_outer .wcpa_form_item .color-group .wcpa_color label span.disp_squircle {
border: 7px solid #666;
}And you can style the selected color group buttons as follows
.wcpa_form_outer .wcpa_form_item .color-group.wcpa_sel_type_tick input:checked+label span {
border: 7px solid transparent;;
}Note: Please don’t forget to customize the color code as you want before using this in the CSS code file.
Thank you