Pablo

Forum Replies Created

Viewing 15 posts - 166 through 180 (of 297 total)
  • Author
    Posts
  • Pablo
    Moderator
    Plugin Support

    Hi Manuel,

    Probably you are trying the option “Multilanguage > Limit checking“, right?

    I just sent you a modified version of the plugin where I tried to fix it for you. Please give it a try and let me know if it works better now.

    Now, regarding your other question:
    > Further i would like to know, if it’s possible to set the limit in the hole basket to 1 product.

    There is a workaround for cases like that.

    1. Enable the “Per product tag” or “Per product category” limit option.
    2. Access the tag or category page and set a limit. 1 in your case.
    3. Set all products with that tag or category.

    Pablo
    Moderator
    Plugin Support

    Can you please create/share an admin account to your server (WP and preferably FTP), so I could log in and check what’s going on? If that’s the case, you can send an email to [email protected].

    in reply to: Not showing UPC on variant product front end pages #85180
    Pablo
    Moderator
    Plugin Support

    Hi Corbin,

    I couldn’t reproduce the issue here. Maybe that is an issue related to your theme.

    Can you please create/share an admin account to your server (WP and preferably FTP), so I could log in and check what’s going on? If that’s the case, please send a message to [email protected].

    in reply to: Not showing UPC on variant product front end pages #85178
    Pablo
    Moderator
    Plugin Support

    Oh ok,

    Can you please take a look if your variations actually have the UPC registered? Maybe they are empty.

    Pablo
    Moderator
    Plugin Support

    Hi Elliott,

    Have you tried setting the “Advanced > Prevent login after register > Login prevention method” option as “Use login filter from WooCommerce”?

    in reply to: Not showing UPC on variant product front end pages #85176
    Pablo
    Moderator
    Plugin Support

    Hi,

    Thanks for the kind words 🙂

    Have you tried to enable the following options?
    – Barcodes > Barcodes section
    – Barcodes > Single product page

    in reply to: Is the plugin compatible with Etsy? #89994
    Pablo
    Moderator
    Plugin Support

    Hi Cheryl,

    Would it be possible to send us the plugin you have used to import the orders from Etsy? And also the import file with the orders, maybe the CSV or the XML?

    Can you please also create/share an admin account to your server (WP and preferably FTP), so I could log in and try to find out the meta key?

    If that’s possible, please send a message to [email protected].

    Pablo
    Moderator
    Plugin Support

    Can you please explain this part better? “The cost price will be In the custom meta but not copied across.”

    If the cost price is in the custom meta (_wc_cog_cost) then it should be working.

    Can you please create/share an admin account to your server (WP and preferably FTP), so I could log in and check what’s going on? If that’s the case, please send a message to [email protected].

    Pablo
    Moderator
    Plugin Support

    Hi Alejandro,

    The new version I just released (v2.3.4) has a new option for you at “Advanced > Session start params”. 

    Let me know if you try it 😉

    Pablo
    Moderator
    Plugin Support

    Hi Toby,

    Although this is not possible with the current options from the plugin, this might be possible with some custom code by using the alg_wc_ev_user_account_activated hook. For example:

    add_action( 'alg_wc_ev_user_account_activated', function ( $user_id, $args ) {
       if ( ! $args['directly'] ) {
          return;
       }
       $redirect_url = '';
       $order_id     = get_order_from_user_id( $user_id );
       if (
          1 === get_product_type_qty_from_order( 'simple-subscription', $order_id ) ||
          1 === get_product_type_qty_from_order( 'variable-subscription', $order_id )
       ) {
          $redirect_url = 'http://redirect-to-url-1.com';
       } elseif (
          get_product_type_qty_from_order( 'simple-subscription', $order_id ) > 1 ||
          get_product_type_qty_from_order( 'variable-subscription', $order_id ) > 1
       ) {
          $redirect_url = 'http://redirect-to-url-2.com';
       }
       $redirect_url = add_query_arg( array( 'alg_wc_ev_success_activation_message' => 1 ), $redirect_url );
       wp_redirect( $redirect_url );
       exit;
    }, 90, 2 );
    

    Just a note, the get_order_from_user_id() and get_product_type_qty_from_order() functions do not exist. I just added it as an example.

    in reply to: Why is the session_start() function not working properly? #101577
    Pablo
    Moderator
    Plugin Support

    Hi Alejandro,

    I’m sorry that session_start() hasn’t been working for you as it should. We didn’t have any problems so far with it. You are the first person to report it.

    Just a note, the only option that actually triggers session_start() is “Advanced >
    Prevent login after register” combined with “Redirect” and “Force Redirect”. Maybe you could try to turn “Force redirect” off so you wouldn’t have this problem anymore.

    Anyway, don’t worry. I’m creating a new option for you that I’ll release on the next version that will allow to setup the params passed to session_start().

    I’ll let you know as soon as it’s ready.

    Pablo
    Moderator
    Plugin Support

    Hi Nat,

    I’m sorry it’s not working for you as expected, but I just tested here and it seems to be working just fine. Can you please explain what exactly is the process you’re running where _wc_cog_cost meta does not get updated or created? Maybe with a video if possible?

    Any chance that the meta is being created as it should but the problem is related to your reporting software or with the way your site is syncing with it?

    Pablo
    Moderator
    Plugin Support

    Great, thanks for letting me know.

    In that case, please consider leaving a review if you are enjoying the plugin/support. It would be much appreciated 🙂

    I’ll try to fix it on the next version so that option can be left enabled.

    Pablo
    Moderator
    Plugin Support

    Hi Ann,

    Please try to disable the General > Checkout options > Block checkout page option and let me know if it helps.

    in reply to: Compatibility question #85170
    Pablo
    Moderator
    Plugin Support

    Hi Andy,

    I’m sorry, can you please elaborate on it?

    I couldn’t access the link you provided. And what do you mean by “got both”?

Viewing 15 posts - 166 through 180 (of 297 total)