Forum Replies Created
-
AuthorPosts
-
Hi again David,
If you are still interested – as promised, we’ve just released a new plugin version (v2.0.0). There are many new features, including accept, reject, and counter actions. Also, all offers are now listed in the new “Offers” dashboard. Please give it a try and let me know what you think. Any feedback is highly appreciated.
Hi,
I would suggest using the
do_shortcode()
function with our[alg_wc_ean_barcode]
and/or[alg_wc_ean_barcode_2d]
shortcodes, like this:echo do_shortcode( '[alg_wc_ean_barcode]' );
echo do_shortcode( '[alg_wc_ean_barcode_2d]' );
And if you need to specify the product ID then:
echo do_shortcode( '[alg_wc_ean_barcode product_id="' . $product_id . '"]' );
echo do_shortcode( '[alg_wc_ean_barcode_2d product_id="' . $product_id . '"]' );
Please give it a try and let me know what you think.
Hi Emeline,
Sure, we’ve just processed a full refund.
Happy to help 🙂
> I suspect that the two statuses that goes beyond the 20 characthers limit are, “Gavekort Fysisk” and “Gavekort Online”?
It’s not the name of the status, but its slug, i.e.,
wc-order-giftcard-online
andwc-order-giftcard-physical
– both are over 20 characters.> It was only just now that I saw you also have a plugin for creating custom order statuses…
Yes, we do have this plugin. And it has some additional features, like sending an email on status change.
P.S. If you like the plugin, please consider leaving me a rating here or here.
Hi again, Lars,
I’ve logged in and hopefully managed to fix the issue. As you correctly guessed, it was connected to your custom code for adding custom statuses in the “Advanced Scripts”. In the “Location” option there, you had “Administration area”. I’ve changed it to “Everywhere” – rules seem to be working fine now. Please give it a try and let me know what you think.
P.S. There is one more thing about your custom order statuses. The
register_post_status()
function documentation says that:20 is the maximum character length for the
$post_status
parameter.Two of your statuses exceed that.
Hi Lars,
Sorry for the late reply.
Would it be possible to share access to your site, so I could log in and check what’s going on (my email is [email protected])? Please let me know if sharing an account is not an option, and I will continue solving it remotely.
Hi Numan,
I believe this is doable. However, I don’t think that WooCommerce stores product stock in order meta – we need to use product meta instead. So in your case, we need to add a PHP snippet to your site. If that’s ok – there is the
alg_wc_order_status_rules_do_apply_rule
filter in our plugin. It allows you to customize the conditions of when the rule should be applied. So you need to add a simple rule, e.g., Rule #1 / Status from: Processing / Status to: Completed. And finally, add this snippet to your site (“Example #3: Check if the order has any products with stock quantity lower than or equal to 5”).Please give it a try and let me know what you think.
Hi Daniel,
Glad to hear you’ve figured it out. In case anyone else has a similar question (please correct me if I’m wrong) – when you reach the 3rd step of their import procedure, there is the “Custom Fields” section. You need to set the custom field’s “Name” to
_alg_ean
.Hi Andres,
I’m not sure if this is exactly what you need, but we have the “Other cart discounts” checkbox in “WooCommerce > Settings > Product Price by Quantity > General”. If enabled, then the wholesale discount will be applied only if no other discounts (i.e., coupons) were applied. Please give it a try and let me know if that’s what you are looking for?
Hi David,
Offers will appear in a meta box on each product’s admin edit page. Currently, there are no options to accept/reject/counter the offers made, however, this seems like a really useful feature – let me try to add it to the plugin. Will get back to you soon…
Hi Demetrio,
I’ve replied to you privately, but if anyone else has a similar question – as “Avery J8551” labels are 38.1 mm x 21.1 mm, I would suggest setting options like this in our “Print” settings section (having in mind that we want to put them on A4 page):
Page orientation – Portrait
Unit – millimeters
Page format – A4
Max barcodes per page – 65
Columns – 5
Cell width – 38.1
Cell height – 21.1
Top margin – 11.35
Left margin – 9.75
Right margin – 9.75
Page break margin – 11.35If anyone else is interested – as we’ve figured out, notes didn’t show up on the front end because of the caching (“LiteSpeed Cache” plugin). Clearing the cache solved the issue.
If anyone else is having a similar problem – if you got your key from the
apilayer.com
and not fromfixer.io
, then you need to update the plugin to the v3.4.0 and selecthttp://api.apilayer.com/fixer/latest
for the “URL” option in “WooCommerce > Settings > Payment Gateway Currency > General > Update periodically from server”. -
AuthorPosts