Forum Replies Created
-
AuthorPosts
-
Hi @navneet-nair,
Can you please elaborate on your issue?
It worked for me even on the free version of the WP All import.
Maybe you could try to set the import file like this:
Meta: _alg_wc_cog_cost
If it doesn’t work, please send me your import file somehow and I can try to import it here.
😉
Hi @mihail,
Sorry for the long delay.
I believe I was able to fix the issue for you on version 2.5.5 I just released.
Let me know if it helps.
Hello,
Just a note, this is fixed already. The session will start with the arguments from the option:
– Advanced > Session start paramsAnd by default, it will already start with the
read_and_close
astrue
.Hi @gyula-csiak,
Please, update the plugin to version 2.9.4 I just released. I believe it will be more compatible with PHP 8.2.
Let me know if it helps.
Hi Santosh,
Since you’re getting the cost from an order item, it’s probably more reliable to get it from the order item meta instead of the product meta. You could do it like this:
foreach ( $order->get_items() as $item_id => $item ) { wc_get_order_item_meta( $item_id, '_alg_wc_cog_item_cost' );
-
This reply was modified 2 years, 1 month ago by
Pablo.
March 27, 2023 at 11:14 pm in reply to: Is there a shortcode to add/remove items from wish list? #112153Hi,
The shortcode available for adding/removing an item from wish list is
[alg_wc_wl_toggle_item]
. It’s only available on pro version though.😉
March 16, 2023 at 10:37 pm in reply to: which mobile application builder is compatible with min max? #111495Hi @bahador,
Thanks for the kind words 🙂
I’m sorry, but we’re not focused on mobile. Anyway, you could try to interact with the WooCommerce Rest API.
-
This reply was modified 2 years, 1 month ago by
Pablo.
Hi @darwin,
We have moved it already. At least, most of it. You just have to enable our options from Tools & Reports > Analytics.
Hi @chun,
The guest options are a little tricky.
The option “Do nothing but block guests from purchasing products beyond the limits” will just block guests from buying products above the current limits. For example, if the “Mode” option is set to
Product quantities
and the limit is 1, the guest won’t be able to purchase a quantity bigger than 1. Now, with the “Mode” set asOrders
, the Do nothing but block guests from purchasing products beyond the limits option won’t help so much.Maybe you’ll need to use the “Identify guests by IP address” instead. That way, if you have the option from WooCommerce “Accounts & Privacy > Guest checkout > Guest checkout > Allow customers to place orders without an account“, the guest IP will be saved on his purchase and he won’t be able to buy again if using the same IP.
-
This reply was modified 2 years, 1 month ago by
Pablo.
March 15, 2023 at 12:00 am in reply to: WooCommerce Product Recommedations shortcode not displaying results #111356Hi @nick-coupland,
Can you please elaborate on your question? What do you mean by shortcodes to popups?
The popup plugin adds the default WooCommerce notices to popups, not shortcodes.
Hi @info-3,
I’m not sure if I got it. But you can enable a notice on the product page by setting the option Frontend > Product limit message as
Notice
.Let me know if it helps.
Hi @rashkoff,
Sorry for the delay, but I was working on it. I created some new options for you on version 2.9.2 I Just released.
You can find it in the Tools & Reports section:
– Tools & Reports > Orders recalculation tool > Date > After.
– Tools & Reports > Orders recalculation tool > Date > Before.
– Tools & Reports > Orders recalculation tool > Date > Date type.Let me know if it helps 😉
March 6, 2023 at 8:21 pm in reply to: Inquiry about API Endpoint for Cost of Goods for WooCommerce Pro #110779Hi Rafal,
Sorry for the long delay.
You can get it by using the WooCommerce REST API.
Example:
http://site.com/wp-json/wc/v3/orders
.And then you can access the
alg_wc_cog_order_profit
and_alg_wc_cog_order_cost
keys by checking themeta_data
node. -
This reply was modified 2 years, 1 month ago by
-
AuthorPosts