Forum Replies Created
-
AuthorPosts
-
Hi Karel,
Sorry for the late reply.
By default, the table will have the
alg_wc_product_ppq_table
class, so you can easily style it with CSS, e.g.:.alg_wc_product_ppq_table { border: 1px solid black; width: auto; }
As for showing the table as a pop-up – I need to research it a bit – will get back to you asap.
October 21, 2022 at 10:50 pm in reply to: I don’t see orders from PayPal in the WooCommerce – Reports #93934Hi Lisa,
I’m going to mark this thread as “resolved” for now, hope that’s ok. Please let me know if there are still any questions/issues.
P.S. If you’d want to lower the price by $1 every seven days, then your formula would look like this:
[min value="59"][product_price]-[floor]([current_time]-[product_last_sale_time min_date="2022-10-04"])/(24*60*60*7)[/floor][/min]
i.e., we have
60*7
instead of60/7
.One note, though – you have set
min_date="2022-10-04"
, so today (i.e., 2022-10-05), the formula will not make any changes to product prices because it has to be at least one full week since the last sale. One exception – it will set the minimum price for all products to $59 (because we have[min value="59"]...[/min]
), so if any of your products have an initial price lower than $59, it will be automatically increased to $59.Hi Niklas,
I’ve just tried using your formula on my test site, and it seems to be working fine here. Just to be sure, you are trying to lower the price by $7 for each day without sales, correct? I.e., if the initial product price is $100, then after two days without sales, the product price will be $86 (because 100-2*7=86)?
Solved. As we’ve figured out, the Pro plugin version wasn’t updated on Alain’s site (the free plugin version was updated instead). As soon as it was done, the error disappeared.
September 24, 2022 at 12:22 am in reply to: Compatible with any email customiser template plugins? #91089Hi Lucy,
Thank you for the update, and happy to hear it’s solved 🙂
Let me know if you need anything else, and if you like the plugin, please consider leaving me a rating here or here.
P.S. As mentioned, this fix will be included in the next plugin version – I will let you know as soon as it’s ready.
Hi Mark,
Sorry for such a late reply.
Sure, you can do that. All you need to do is set the “Status from” option to “Processing”, and “Status to” option to “Completed”. And you need to set the “Time trigger” to “0” – this way, the plugin will change the order status immediately.
I hope this helps, and please let me know if you have any questions.
September 21, 2022 at 10:07 pm in reply to: Compatible with any email customiser template plugins? #90870Hi Lucy,
I think I found a solution – I’m going to include it in the next plugin version; however, if you are ok with adding a small PHP snippet to your site, this will add EANs to the VillaTheme’s customizer plugin emails:
add_action( 'viwec_order_item_parts', function ( $item_id, $item, $order ) { if ( function_exists( 'alg_wc_ean' ) && false !== ( $ean = alg_wc_ean()->core->get_ean_from_order_item( $item ) ) ) { printf( '<p><strong>EAN:</strong> %s</p>', $ean ); } }, 10, 3 );
Please give it a try and let me know what you think.
September 19, 2022 at 3:53 pm in reply to: I don’t see orders from PayPal in the WooCommerce – Reports #90636Hi Lisa,
Please update the plugin to the latest v3.5.0. Then you need to enable the new “WooCommerce Analytics > Orders and Revenue” checkbox in “WooCommerce > Settings > Payment Gateway Currency > Admin”. After that, I suggest you “Clear analytics cache” in “WooCommerce > Status > Tools”. Now, you should be able to see the correct values in the “Orders” and “Revenue” analytics report tabs. Please give it a try and let me know what you think.
The issue is fixed in the plugin v3.4.3 (24/08/2022). You need to enable the “YITH WooCommerce Account Funds Premium” checkbox in “WooCommerce > Settings > Payment Gateway Currency > Advanced”.
September 19, 2022 at 2:40 pm in reply to: Compatible with any email customiser template plugins? #90633Hi,
Sorry for the late reply.
I will need to take a look at VillaTheme’s plugin code. This is the one – https://wordpress.org/plugins/email-template-customizer-for-woo/ – correct?
Hi Antonio,
Sorry for the late reply.
To make it work with the “Oliver POS” plugin, I would suggest setting our “Meta key” option (in “WooCommerce > Settings > EAN > Advanced”) to
oliver_barcode
. This way, both our plugins will use the same meta key for storing EANs. However, it won’t work for product variations. We can solve this as well, but it will require different settings – let me know if you need this (we discussed this with one of our other customers here).Note: as we’ve figured out, the problem was in undeleted/old EANs.
September 12, 2022 at 11:40 pm in reply to: selected plain email but receive html code inside #90133Hi,
That’s expected – the
[order_details]
shortcode is outputting an HTML table. However, we’ve just released a new plugin version (v1.5.4), where I’ve added theplain_text
attribute – now you can output a simple text with[order_details plain_text="yes"]
.Please give it a try and let me know what you think.
Resolved: the issue is fixed in the plugin v4.3.3.
-
AuthorPosts