Forum Replies Created
-
AuthorPosts
-
Hello,
I’m not sure if I got exactly your situation. Would you like to import products with different costs? If that’s the case you can simply import them using WooCommerce from a CSV file for example.
Then you could use our “Tools & Reports > Product Import Costs Tool” option to copy the product cost meta that you have used in your CSV to our meta
_alg_wc_cog_cost.
Let me know if it helps you.
April 19, 2022 at 12:20 am in reply to: Is it possible to see the profit per category per period? #89830Hi Christo,
We have good news. Since version 2.5.5 I just released it will be possible the see the profit per category using the analytics. Let me know if you try it out 😉
April 19, 2022 at 12:16 am in reply to: Is it possible to see profit margin in the analytics report? #89979Hello,
I just released a new version (v2.5.5) and now it will be possible to see the profit margin/profit percentage on the analytics tabs (Orders, Products, Categories, Revenue).
For now, it will only show the profit for the totals on the summary and not as a new column. Please take a look at the screenshot.
And it will do that based on the option “Products > General > Product profit HTML template”.
April 19, 2022 at 12:02 am in reply to: Can I see the “cost of goods sold by category” for the previous month’s sale? #89983Hi Paul,
I just released a new version (v2.5.5) and now it will be possible to do that using the analytics. I hope you like it 🙂
April 12, 2022 at 4:32 pm in reply to: Is there a way to not have a redirect link when PRO accounts are being made? #101566Hi Gabriel,
I believe you can get what you want by using some of our filters. Considering the
pro-account
is a user role, you could try to add this to yourfunctions.php
:add_action( 'alg_wc_ev_email_content_final', 'alg_wc_ev_my_custom_activation_email', 9, 2 ); add_action( 'alg_wc_ev_email_subject_final', 'alg_wc_ev_my_custom_activation_email', 9, 2 ); add_action( 'alg_wc_ev_email_content_heading', 'alg_wc_ev_my_custom_activation_email', 12, 2 ); function alg_wc_ev_my_custom_activation_email( $email_content, $args ) { if ( 'activation_email_separate' !== $args['context'] || empty( $user_id = $args['user_id'] ) || ! is_a( $user = get_user_by( 'ID', $user_id ), 'WP_User' ) || ! in_array( 'pro-account', $user->roles ) ) { return $email_content; } // Email Content. $email_content = 'Custom email CONTENT, including some placeholder present on the Email Settings page, like %user_display_name%.'; if ( 'alg_wc_ev_email_subject_final' === current_filter() ) { // Email Subject. $email_content = 'Custom SUBJECT'; } elseif ( 'alg_wc_ev_email_content_heading' === current_filter() ) { // Email Heading. $email_content = 'Custom HEADING'; } // Placeholders. $placeholders = array_merge( $args['placeholders'], alg_wc_ev_get_user_placeholders( array( 'user_id' => $user_id ) ) ); $email_content = str_replace( array_keys( $placeholders ), $placeholders, $email_content ); return $email_content; }
Let me know if you need more help.
Hi Ngozi,
Are you getting some kind of error? If that’s the case can you please send us? Maybe with a screenshot?
Can you please try to disable the free version?
April 8, 2022 at 7:56 pm in reply to: How can I impose a different limit for the first order of my customers? #93062Hi Alex,
Good news. I just released a new version (v4.1.4) with a new
[alg_wc_oma_amount]
shortcode that can be used on the amounts. It allows to filter the customer type. If it’s a paying or non-paying customer.Example:
Setting a value of 50 for non-paying users (any customer that hasn’t placed an order or is a guest user) and a value of 25 for any other type of user.[alg_wc_oma_amount customer_type="non-paying" value="50"][alg_wc_oma_amount value="25"]
You can look for more info at the shortcodes documentation page.
Hi Pavan,
Sorry for the long delay.
This is a tricky question, as the “Sum” is being stored in the database on different tables depending on the section enabled. The most basic info is stored on the options table following this meta key pattern:
alg_wc_oma_max_sum
,alg_wc_oma_min_sum
.Let me know exactly what you’d like to get and how the result would look like.
Hi Dave,
Please, make sure you’re using the latest version of the plugin, and also try to clear the analytics cache at: WooCommerce > Status > Tools > Clear analytics cache.
Let me know if it helps 😉
April 3, 2022 at 9:04 pm in reply to: Why is the wg_cog_cost field for COGS not being updated with new products? #89967Hello Nat,
Please try to enable both “Compatibility > Metorik” options and let me know if it helps.
Great! anytime 🙂
Hi again Sina,
Please try to enable a new option I’ve created for you on version 2.5.4 I just released:
– Advanced > Force costs update > Auto fill empty order items costs on order meta updateLet me know if it helps 😉
Please try to enable the “Advanced > Force costs update” options and let me know if it helps.
Hi Sina,
Sorry for the delay. I’ll give you a feedback about it at the end of the day.
Ok,
I’ll take a look.
-
AuthorPosts