Pablo

Forum Replies Created

Viewing 15 posts - 181 through 195 (of 297 total)
  • Author
    Posts
  • in reply to: How can I import products with different costs? #89992
    Pablo
    Moderator
    Plugin Support

    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.

    in reply to: Is it possible to see the profit per category per period? #89830
    Pablo
    Moderator
    Plugin Support

    Hi 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 😉

    Pablo
    Moderator
    Plugin Support

    Hello,

    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”.

    Pablo
    Moderator
    Plugin Support

    Hi 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 🙂

    Pablo
    Moderator
    Plugin Support

    Hi 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 your functions.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.

    in reply to: Why can’t I activate the plugin on our website? #93182
    Pablo
    Moderator
    Plugin Support

    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?

    Pablo
    Moderator
    Plugin Support

    Hi 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.

    in reply to: How do I get Rest API details for this plugin? #93124
    Pablo
    Moderator
    Plugin Support

    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.

    in reply to: How can I update the cost of previously placed orders? #89974
    Pablo
    Moderator
    Plugin Support

    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 😉

    Pablo
    Moderator
    Plugin Support

    Hello Nat,

    Please try to enable both “Compatibility > Metorik” options and let me know if it helps.

    in reply to: How to add Paypal cost from meta? #89953
    Pablo
    Moderator
    Plugin Support

    Great! anytime 🙂

    in reply to: How to add Paypal cost from meta? #89951
    Pablo
    Moderator
    Plugin Support

    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 update

    Let me know if it helps 😉

    in reply to: How to add Paypal cost from meta? #89949
    Pablo
    Moderator
    Plugin Support

    Please try to enable the “Advanced > Force costs update” options and let me know if it helps.

    in reply to: How to add Paypal cost from meta? #89948
    Pablo
    Moderator
    Plugin Support

    Hi Sina,

    Sorry for the delay. I’ll give you a feedback about it at the end of the day.

    in reply to: How to add Paypal cost from meta? #89946
    Pablo
    Moderator
    Plugin Support

    Ok,

    I’ll take a look.

Viewing 15 posts - 181 through 195 (of 297 total)