Ronald van Arkel
Forum Replies Created
-
Forum: Plugins
In reply to: [F4 Total Stock Value for WooCommerce] Total value with or without VAT?Hi,
Thank you for the answer; might be a good thing to add the information to the plugin page?
Works well, thank you!
Ron
Hello Emanuela,
Thank you for the help. I didn’t know the meta “name” so to say, could not be found in the FAQ (sure looked trough it and also on the forum here).
This is my final code with with classes added to it:
// WooCommerce SKU and UPC under product title add_action( 'woocommerce_single_product_summary', 'dev_designs_show_sku', 10 ); function dev_designs_show_sku(){ global $product; echo '<div class="sku_under_title">SKU:' . $product->get_sku() . '</div>'; } add_action( 'woocommerce_single_product_summary', 'dev_designs_show_upc', 10 ); function dev_designs_show_upc(){ global $product; echo '<div class="upc_under_title">UPC:' . $product->get_meta( '_wpm_gtin_code' ) . '</div>'; }
Again, thank you so much for your help!
Forum: Plugins
In reply to: [Product GTIN (EAN, UPC, ISBN) for WooCommerce] auto generate GTIN number?Hello,
GTIN numbers need to be generated en registered trough gs1.org (for example, there are others that will sell you codes too). Contact them. In most cases, you need to have a registered business. I registered UPC codes with them and for Mexico you need to have proof that you are a legit business with enough cash flow.
So no, you can not just auto generate these codes.
Have a nice day too.
Hello,
I would like to know this too. I’ve tried:
// WooCommerce UPC under product title add_action( 'woocommerce_single_product_summary', 'dev_designs_show_upc', 10 ); function dev_designs_show_upc(){ global $product; echo 'UPC: ' . $product->wpm_gtin(); }
“wpm_gtin” isn’t the right one for sure, so, what to put here? Is it supported?
I’m on no way a programmer, just modding the theme for my website.
Thank you,
RonaldDone! Thank you! I have missed the setting when I walked trough it the first few times. All settings are now enabled. 174 Products so no performance problems on a 6 vCPU / 6GB server.
I already found the “Stock will Last (Days)”, and that would have done the trick for me as well. Setting stock threshold makes it even better!
Thank you again for the great service and plugin!
-Ronald
OpenBuilds MexicoHello Pavel,
Yes, I have seen the locks on some topics too.
Regarding min amd max per product, ATUM already has a per product out of stock threshold.
Ow, that is what I am looking for, let me try to find it, if not, I’ll browse your forums.
Thank you for such a great plugin!
-Ronald
Hello Pavel,
I also want to say thank you for the nice plugin, however, I do agree with @spectrummarcom that the feature of min/max stock per product is a must for most WooCommerce sellers that want to have the product flow as optimized as possible.
How far are you with the premium add-on for Purchase Orders and Suppliers as I see that it has been at least 3 months and I can’t find the add-on on your website.
Thank you,
-Ronald
Hello Gary,
Translation succesful! However, for loco-translate it will requiere a language directory to create a template:
wp-content/plugins/woo-address-book/languages
Thank you,
-Ronald
Hello Gary,
Looks like I have to be sorry as I didn’t see your previous post, sorry about that.
Let me test the new release to see if translation goes well. I will also try to explain how to make the plugin less confusing for customers when checking out, this might be a bit tricky as it must be compatible with every theme so I understand you went with a drop-down selector.
Thank you for the update,
-Ronald
Forum: Plugins
In reply to: [WooCommerce] Adding SKU to any product title, variable, grouped or simpleHello Zandy,
Thank you for your suggestions. It seems there is no easy way to “attach” the SKU after any title. This leaves me to hack/edit the files from woocommerce and place them in my child theme, as I have been doing already for grouped products. The good thing is that I do not use variable products so I can skip that part.
I will look into the two options you gave me when I start to pull my hair out (normally after 3 days of digging and being lost in the code).
Thank you Zandy,
-Ronald
Hello Gary,
Sorry about the “deactivated” part, I did not know the context of it and just ran into it when I was translating the plugin for my website.
I’m not a programmer, just a simple user, so I cannot tell you how to add translatable strings to the code. For now, I’m using code, besides locotranslate, in my funtions.php to translate:
add_filter('gettext', 'translate_shipping'); add_filter('ngettext', 'translate_shipping'); function translate_shipping($translated) { $translated = str_ireplace('Shipping', '', $translated); return $translated; } add_filter('gettext', 'translate_address_book'); add_filter('ngettext', 'translate_address_book'); function translate_address_book($translated) { $translated = str_ireplace('Address Book', 'Direcciones de envío', $translated); return $translated; } add_filter('gettext', 'translate_long_line_1'); add_filter('ngettext', 'translate_long_line_1'); function translate_long_line_1($translated) { $translated = str_ireplace('The following addresses are available during the checkout process.', 'Direcciones adicionales:', $translated); return $translated; }
By the way, why was chosen for a dropdown selector to select a saved shipping direction?
Do you want to expand this plugin and make a selectable billing address possible?
I have been looking like a plugin like the one you made for years now, happy I made a search today.
Thank you,-Ronald
It seems 2 lines I can not translate:
– Shipping Address Book
– The following addresses are available during the checkout process.
– Address Book-Ronald
- This reply was modified 6 years, 9 months ago by Ronald van Arkel.
Forum: Plugins
In reply to: [WooCommerce] Adding SKU to any product title, variable, grouped or simpleHello,
Would have thought this wasn’t so hard to do for the real die-hard programmer. I’ve looked again over the internet but still no luck, but the search continues and not going to give up on this ;).
Thank you,
-Ronald
Hello,
Fixed it by deleting this plugin; less stress for customers and me.
Thank you,
-Ronald
Forum: Plugins
In reply to: [Conekta Payment Gateway] Compatible con WooCommerce 3.1.1 3.1.2Hello,
I’ve disabled the plugin again as 70 to 80% of the payments were declined (fraud).
Let’s see if future releases will work, but for now OpenBuilds Mexico will not use the plugin.
Thank you,
-Ronald