Agent 3W
Forum Replies Created
-
Forum: Plugins
In reply to: [Packaging Fit] Inquiry about weight and sizes limitationsThe settings are identical on my side. It didn’t work correctly with the first order I placed; I must have made some changes in the meantime. When I placed a new order with exactly the same products, it worked correctly just like it did for you.
Anyway, sorry for the trouble and thank you for taking the time to look into it ??
In any case, it’s an interesting plugin—well done and thank you for your contribution.
I look forward to seeing future updates ??Best regards.
Joffrey- This reply was modified 1 month, 4 weeks ago by Agent 3W.
Forum: Plugins
In reply to: [Packaging Fit] Inquiry about weight and sizes limitationsThank you, Vania! It worked =D
However, I think there might be an issue with the calculation.
Settings:
- Allow rotation: Keep Flat (also tested with Best Fit)
- Free package space (cm): 0
- Free product space (cm): 0
My packages are:
Package 1:
- Price (€): 1000
- Package Weight (kg): 1000
- Package Max Weight (kg): 22000
- Length (cm): 5898
- Width (cm): 2352
- Height (cm): 2393
- Free space (cm): 0
Package 2:
- Price (€): 500
- Package Weight (kg): 500
- Package Max Weight (kg): 11000
- Length (cm): 2991
- Width (cm): 2352
- Height (cm): 2393
- Free space (cm): 0
Order contains the following items:
Item 1:
- Weight (kg): 150
- Length (cm): 300
- Width (cm): 160
- Height (cm): 120
- Quantity: 100
Item 2:
- Weight (kg): 50
- Length (cm): 150
- Width (cm): 90
- Height (cm): 70
- Quantity: 100
Packaging Fit calculation result:
- Box 1/2: Package 1
- Box 2/2: Package 2
Expected result: Only Package 1
Perhaps I’m missing something. Could you please check on your end?
Thank you.
Best regards.Thank you David ??
No news from the author of the plugin and big lie on the pro site: don’t believe in “100% Satisfied or Refunded No Risk!”. The author is just ignoring you so they don’t have to pay back.
Hello,
Did you find my PRO account ?
I have no news from you since my last message.
Thank you.Customer ID : 2693271
I tried to contact you several times by email on [email protected] and once from your contact form on wpblockslider.com.
I didn’t find support ticket system on both : freemius.com and wpblockslider.com
Thanks
Have a look here : It’s your official file :
https://plugins.trac.www.ads-software.com/browser/royal-elementor-addons/tags/1.3.77/assets/js/admin/templates-kit.jsLine 263
Hello Nick,
Thanks for your reply.
I always download plugins from official WordPress repository or author website for paid plugins. I found this code in your current plugin files from WordPress repository.
I reinstalled twice. Once from WP plugins dashboard, once other via FTP after downloading the plugin directly from here.
So you confirm, code provided in first post is form your side ?
Thank you.
Best regards.
JoffreyForum: Plugins
In reply to: [WooCommerce Blocks] Translate : Add a couponThank you Saif ??
Hope this will be fixed in one of next updates ??
Best regards.
JoffreyForum: Plugins
In reply to: [Deposits & Partial Payments for WooCommerce] Double ordersHi,
thanks for information. When do you expect next release ?
Thank you.
Best regards.Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] Create form from PHP (not with UI)Hello Konrad,
good to know for registering forms from PHP in the future ??
I’m running the import only on my plugin activation using register_activation_hook().
Have a nice day too.
Best regards.
JoffreyForum: Plugins
In reply to: [Advanced Custom Fields: Extended] Create form from PHP (not with UI)Hi,
I finally found a way.
I exported all forms in json from the dev site and put the file in the plugin.
I’m using the acfe functionacfe_import_form($args)
to import forms on my plugin activation.I’m running something like that (inside my plugin class) :
$acfe_forms_file = self::get_plugin_dir() . "acfe_forms_settings.json"; if ( file_exists( $acfe_forms_file ) && function_exists( 'acfe_import_form' ) ) { acfe_import_form( file_get_contents( $acfe_forms_file ) ); }
Thank you Konrad ??
Have a nice day too.
Best regards.
Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] ACF Form loaded from ajax doesn’t worksThank you @hwk-fr .
acf.do_action('append', $('#popup-id'));
is what I missed in the ACF doc ??Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] ACFE Form – Repeater HTML RenderThank you @hwk-fr.