Emanuela Castorina
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-Members Membership Plugin] $wpmem->fields is not definedHello,
thank you for your reply, I’m sorry if I posted this in a wrong place.
The version is the latest 1.0.2, I replaced for the moment
$wpmem->fields
withwpmem_fields()
to avoid the error.I’m sure that you’ll make the same in the next plugin release.
Forum: Plugins
In reply to: [Product GTIN (EAN, UPC, ISBN) for WooCommerce] Issue with public labelHello,
this issue was fixed on version 1.0.5Hi,
I don’t have any issue with WooCommerce 3.3.4
This is a screenshot of plugin settings
https://nimb.ws/A6NGlEHi,
the code is stored inside the table postmeta, the meta_key is ‘_wpm_gtin_code’Forum: Reviews
In reply to: [YITH WooCommerce Recover Abandoned Cart] Too badHello,
I’m sorry for this review.
What is the issue with the plugin?- This reply was modified 6 years, 3 months ago by Emanuela Castorina.
Forum: Plugins
In reply to: [Product GTIN (EAN, UPC, ISBN) for WooCommerce] Add GTIN to order metaHello @mkipg,
you can find the data inside the table wp_postmeta searching by post_id = (your product id)
the meta is called ‘_wpm_gtin_code’Forum: Plugins
In reply to: [Product GTIN (EAN, UPC, ISBN) for WooCommerce] WooCommerce APII’ll commit that file in the new release so you won’t lost these changes.
This can be useful to other developer.If you have two minutes could you leave a review for this plugin?
https://www.ads-software.com/support/plugin/product-gtin-ean-upc-isbn-for-woocommerce/reviews/Thank you!
Forum: Plugins
In reply to: [Product GTIN (EAN, UPC, ISBN) for WooCommerce] WooCommerce APII made a test,
I changed the file includes/class.product-gtin-wc.php
with this code
https://gist.github.com/kreamweb/0452907d3ad0121a6535eedad2f7a85athe ‘ean_code’ is present in the product detail:
https://nimb.ws/df9tRkLet me know!
Forum: Plugins
In reply to: [Product GTIN (EAN, UPC, ISBN) for WooCommerce] WooCommerce APIfor the moment you can try, if this script works I’ll add it to the plugin.
Forum: Plugins
In reply to: [Product GTIN (EAN, UPC, ISBN) for WooCommerce] WooCommerce APIPut the script in the file functions.php of your theme.
Forum: Plugins
In reply to: [Product GTIN (EAN, UPC, ISBN) for WooCommerce] WooCommerce APII’ve never worked with Rest API but I found this that you can try
add_filter( 'woocommerce_rest_prepare_product', 'custom_products_api_data', 90, 2 ); function custom_products_api_data( $response, $post ) { // retrieve a custom field and add it to API response $response->data['ean_code'] = get_post_meta( $post->ID, '_wpm_gtin_code', true ); return $response; }
https://wordpress.stackexchange.com/questions/308591/woocommerce-product-custom-field
Forum: Plugins
In reply to: [Product GTIN (EAN, UPC, ISBN) for WooCommerce] WooCommerce APIHello,
the EAN code it is a custom field this is the name ‘_wpm_gtin_code’
You should search how get custom fields with WooCommerce Rest API.Forum: Plugins
In reply to: [Product GTIN (EAN, UPC, ISBN) for WooCommerce] Add GTIN to order metaHello,
I added this option inside the new version of plugin (1.0.3).If you like this plugin, please rate and/or review it!
Thank you!
- This reply was modified 6 years, 6 months ago by Emanuela Castorina.
Hello,
thank you for your feedback!
I fixed the issue, you can find the fix on version 1.0.3Forum: Plugins
In reply to: [Product GTIN (EAN, UPC, ISBN) for WooCommerce] Resource field for feedHello,
what is the plugin that you are using to manage the google feed?