acowebs
Forum Replies Created
-
We had a test from our end, But we cannot see any such errors.
Are you still facing this issue? Can you please provide a screenshot, also please provide browser details where you have faced this error.This errors can be due to you have already items in cart with older version of this plugin
You can clear your cart and try adding items to cart as fresh.
You can manage dropdown options using filter
wcpa_form_field
in pro versionFind an example below
add_filter('wcpa_form_field', function ($field, $productId) { if ($field->elementId == 'select_0257240251') { // change field id $posts = get_posts([ 'post_type' => 'school_post_type',//change post type 'post_status' => 'publish', 'numberposts' => -1 ]); $options = []; foreach ( $posts as $post ) { $options[] = (object)[ 'label' => $post->post_title, 'value' => $post->post_name, 'selected' => false ]; } $field->values = $options; } return $field; }, 10, 2);
For premium version support, You can reach us on our website
We have released an update, where we have added settings for changing the form rendering hook. Find settings at Settings>>Advance Settings
We are working on a solution, will provide an option to change render hooks from backend. Will be available in next update
https://downloads.www.ads-software.com/plugin/woo-custom-product-addons.2.7.7.zip
You can download old version here
If you have write any css code to modify form fields generated by Produt addon plugin, that styles will not work with new version.
It wont affect any other css that you wrote to modify your website styles.
Basically, the css class for product addon form fields has got changed in new version, so the styles with older css class will not work.You have to download the pro version from our website, and install, then only you can view the licesense settings.
you can login to your my account section in acowebs.com and download the productWe can see you have set check box value the same for all checkbox fields
The value must be unique for each checkbox options.
It would be easier if you can share the error message or error log.
Also, if possible please share the site url
Forum: Plugins
In reply to: [Product Labels For Woocommerce (Sale Badges)] Automatic Conversion ErrorThanks for reporting this issue, We will be fixing it in next release.
Use this custom css code
.woocommerce table.shop_table td .variation {
text-transform: none;
}It can be settings inside theme, We dont have the theme with us. So cannot check and share exact section where it would be.
For most themes, it will be under Theme settings >>WooCommerce. Please have a check also, you can refer theme support if available
It can be conflict with theme css, If you share the site url, we can check and suggest fix for this issue .
It is not possible to set date format in this free version.