How to perform“Choose File” string translation of upload field?
To perform “Choose File” ,Go to Settings---------------------->select Custom Product Addons------------>select Contents/Strings
Related Articles
How to export order with Addon field values ?
You need to instal Advanced Order Export For WooCommerce. https://wordpress.org/plugins/woo-order-export-lite/ Using the above plugin you can export any custom field assigned to orders/products/coupons is easy and you can select from various formats ...
Install & Activate Plugin
For Installing, you need to navigate through Plugins-> Add New-> Upload Plugin at the back-end of your website. Click on the Choose file button. Now you need to choose the woo-custom-product-addons-pro-3.x.x.zip file from the file directory. Click on ...
To Access WCPA Custom field value from Cart Object
You can access the data from woocommmerce cart object. Below an example code which takes a particular custom field value global $woocommerce; $items = $woocommerce->cart->get_cart(); if (isset($cart['wcpa_data']) && is_array($cart['wcpa_data'])) { ...
Download Purchased Plugin File
For purchasing the pro version, navigate to: Products -> WooCommerce Custom Product Addons. Click on the BUY NOW button. The Product details will be visible on Checkout page While scrolling down you can see two forms to be filled. One contains ...
PHP code to get the date of 10th day from today in the addon field
Please use the below php function code to get the date of 10th day from today in the addon field function getDateAfter($days=10) { $formatted_date = new DateTime(); $date_timestamp = $formatted_date->getTimestamp(); // loop for X days ...