Forum Replies Created
-
AuthorPosts
-
April 2, 2021 at 1:43 pm in reply to: Is there a hook that I could put in place of bp_core_activated_user? #101288
Probably you need to remove the number 2 from the call.
From:add_action( 'alg_wc_ev_user_account_activated', 'send_message_to_new_member', 2 );
To:
add_action( 'alg_wc_ev_user_account_activated', 'send_message_to_new_member' );
Apart from that, can you please describe what’s not working?
Do you know if the function is being called or if there is some error?April 1, 2021 at 2:21 pm in reply to: Is there a hook that I could put in place of bp_core_activated_user? #101286Hello Darryl,
I believe we have the hook you need:
add_action( 'alg_wc_ev_user_account_activated', 'send_message_to_new_member')
This hook uses just a
$user_id
parameter.Let me know if it helps π
March 22, 2021 at 1:09 pm in reply to: Why does “Text in product summary/description” not work for variations? #100579Hello Tom,
I just released a new version (v3.5.4) with a new option for you:
– Frontend > Product limit message > VariationsPlease update the plugin, give it a try and let me know if it works for you π
March 18, 2021 at 10:22 pm in reply to: Why is the notice showing up on the checkout page even after I disable it? #92960Hello Thomas,
I just released a new version (4.0.2) with a fix to the product page notice issue.
Please give it a try and let me know if it works for you πHi David,
Sorry for the long delay.
Are you still having issues?If so, would it be possible for you to create/share an admin account to your server (WP and preferably FTP), so I could login and check whatβs going on?
If that’s the case, please send a message to [email protected]
March 15, 2021 at 11:46 pm in reply to: Why does the “activate” message not appear when an account is registered? #101253Thanks Conor π
I’m not sure exactly why it gets hidden for some users. Maybe it’s related to the theme or some other plugin getting in the way.
If
display: block !important
is not enough for displaying it, please try to also usevisibility: visible;
In the end it would be something like this:
.woocommerce-error { display: block !important; visibility: visible !important; }
March 15, 2021 at 11:11 pm in reply to: Is it possible to notify the user about the limit on the product page? #92949Hi Christopher,
We’re going to add a message option on the next plugin version to notify the minimum total on the product page. However all our messages only get triggered when there is at least one product in cart. Would it suit you?March 15, 2021 at 5:48 pm in reply to: How to set different limits for different categories? #100535Maybe it’s only a matter of setting the correct Date range
Hello York,
Our cost meta is already available via REST API. For example it’s possible to get a product with ID 123 using this route:
http://example.com/wp-json/wc/v3/products/123
The cost will be available over the
meta_data
array.
The key name is_alg_wc_cog_cost
I’ve never tried Integromat but probably this info should be also available on their end as the cost value is stored as a simple product meta.
March 7, 2021 at 2:25 pm in reply to: Why isn’t the activation message displayed after the user has registered? #101251Hi Kim,
Maybe there is something hiding the notice.
Please try to add this chunk of code in your Customizer > Additional CSS:.woocommerce-error { display: block !important; }
February 25, 2021 at 2:01 pm in reply to: How to track costs and keep costs unchanged in old reports? #89553Hello Mahmoud,
Sorry for the long delay.
In order to track costs you have to enable the option:
– Products > General options > Add stockThis will automatically calculate new average cost of goods for the product, based on new “Stock” and “Cost” values you enter. “Stock” will be added to your inventory, and “Cost” will be used to calculate new average cost of goods for the product.
After that you’ll have a costs history available on the admin product page.Regarding your other question, the new costs values will only be updated in old orders if you use the option “Tools & Reports > Orders Tools > Recalculate for all orders“.
We have an option that will calculate the costs only for orders with no costs. It’s located at:
– Tools & Reports > Orders Tools > Recalculate for orders with no costsLet me know if it helps π
Hi Benjamin,
I’m glad to see you’re enjoying the plugin π
All the reports you’ve listed are the ones present on WooCommece > Reports > Stock, correct?
These 3 reports (Low in stock, Out of stock, Most stocked) are from WooCommerce itself. The only stock report we have on our plugin is the last one you mentioned: Cost of goods.
In order to display the report info in this tab you need to:
– Access the product page
– Enable Manage stock? option
– Add a stock quantityLet me know if it helps π
February 16, 2021 at 9:46 pm in reply to: How can I set different discounts for different membership plans? #100558Hello Sepano,
It’s not the scope of this plugin to setup discounts, but you can setup the minimum of products per month a user role can buy
February 16, 2021 at 9:35 pm in reply to: How do I setup the plugin so that users cannot buy more than one of the product? #100561Hello Jeffrey,
You could set it up like this:
1. Set General > Mode as Product quantity
2. Set General > Date range as Lifetime
3. Enable Limits > per product
4. Access the specific product page on admin and set the Limit per user option as 1Regarding guest users, you have 3 choices:
1. Block all guest users from buying all products, regardless of the quantity.
To do that, you only need to :
1.1 Enable General > Guests > Block guests from buying products
1.2 Set Block method as All products2. Block guests from buying specific products, regardless of the quantity.
To do that, you only need to:
2.1 Enable General > Guests > Block guests from buying products
2.2 Set Block method as According to limit options
2.3 Access the specific product page on admin and Enable Block guests3. Block guests from buying according to limit options.
This will block guests from purchasing products beyond the limits. You’d need to:
3.1. Enable Guests > Do nothing but block guests from purchasing products beyond the limitsLet me know if it helps π
Hello ,
Please try to update the plugin to version 2.0.0 and try to set the Checkout > Wrap method option as Smart
Let me know if it works π
-
AuthorPosts