wp-centrics
Forum Replies Created
-
…are you tried the beta? the screenshot that you have posted shouldn’t print buttons, etc.
Hi! Can do you try this beta?
Go to advanced tab, and scroll down:
https://www.ads-software.com/plugins/fish-and-ships/advanced/Select the version 1.5.6.1, download and install as usual. All will be the same as latest release, but printing will be enharced.
Please, give me feedback about!
Carles.Forum: Plugins
In reply to: [Admin Shipping Calculator for WooCommerce] No longer working@tictok : glad 2 help! ??
@japenz : This patch only load the plugin JavaScript file again, there is no doubt that without this JS file the plugin will does nothing. But it does not guarantee that there are no other problems in the way shipping costs are calculated in some methods… or in a future again. You should lookin for some alternative which is maintained.
Kind regards,
Carles Martin
wp-centricsGlad to help!
Kind regards,
Carles MartinForum: Plugins
In reply to: [Admin Shipping Calculator for WooCommerce] No longer workingHi, @tictok, surely is better to keep the post.php / post-new.php for backward compatibility, but looking at your code (surely better than mine for that) I think you must cover also action=edit.
To check it, please, save the order created and reload the page after that. Still working, or fail the JS loading?
Hi @japenz, thank you for contacting us. WooCommerce seems to doesn’t re-create the shipping calculation on back-end, so none of the shipping methods (WC native or other 3rd party) will do any calculation.
Fish and Ships works in an standard mode, so if you find any plugin (currently mantained) that does this functionality but fail with F&S, we’re open to work together with the developer.
But there isn’t in our roadmap to add this kind of functionality by our way, or at least, at this moment. I checked the plugin Admin Shipping Calculator for WooCommerce, and doesn’t worked for me, not for Fish and Ships, and not for native WC flat rate method.
Then I seen your patch, and It hasn’t worked either. Then I tried to patch by myself (I posted it in this thread: https://www.ads-software.com/support/topic/no-longer-working-169/), and seems to work, please, note that this is not related with our plugin: modifying an obsolete plugin is something that you do at your own risk, and we can’t guarantee that it don’t cause other issues
In principle, it should work with all shipping methods, Fish and Ships included. (please test and leave feedback here about, in this thread). The only feature I expect to fail is the conditions set by user role (this is a feature of Fish and Ships Pro).
If you want to give feedback about the Admin Shipping Calculator patch (whether it works or not, or could be improved), please post your feedback in the Admin Shipping Calculator thread: https://www.ads-software.com/support/topic/no-longer-working-169/
Forum: Plugins
In reply to: [Admin Shipping Calculator for WooCommerce] No longer workingI came to this thread through this request: https://www.ads-software.com/support/topic/shipping-in-admin-manual-orders/
After testing the plugin unsuccessfully, and trying the patch above in this thread, it didn’t work for any method, simply the javascript file doesn’t loaded in the admin side
I have made this modification, and it works for both WC flat rate and Fish and Ships (it should work for any shipping method):
/**
* Load JavaScript for our administration
*/
add_action('admin_enqueue_scripts', function() {
global $pagenow;
if(is_admin()
/* Obsolete code:
&& in_array($pagenow, ['post.php', 'post-new.php'])
&& ($_GET['post_type'] ?: 'shop_order') === 'shop_order')
Patched code: */
&& $pagenow == 'admin.php' && isset( $_GET['page'] ) && $_GET['page'] == 'wc-orders'
// that's all folks ;)
{
wp_enqueue_script('shipping-calc_js', plugins_url('js/admin-shipping-calc.js', __FILE__));
wp_localize_script( 'shipping-calc_js', 'shipping_calc', array(
'url' => admin_url('admin-ajax.php'),
'nonce' => wp_create_nonce('admin_shipping_calculate')
)
);
}
});Please note that this modification is subject to improvement and that you make it at your own risk.
Please, post here any feedback on this modification, as it is about this plugin and not about Fish and Ships specifically ??
Kind regards,
Carles Martin
https://www.ads-software.com/plugins/fish-and-ships/Ah, ok! Now I understand, thanks!!!
…well, by now there isn’t a way, maybe adding some printing CSS clauses… I will talk about with the team and I will back here soon, please, don’t close the thread.
PD: How many rules do you have?
Hi, @starpainttech, thank you for your interest in our plugin. Sorry, I’m not sure about what do you mean with “print conditions”, can do you give me more information about what do you want to do / need?
Thanks in advance.
Forum: Plugins
In reply to: [Coming Soon Badges for WooCommerce] Need plugin updateHi Rashedul, thank you for your interest. Sure! This plugin is maintained (although we have not added any new features). Our agency uses it in some of our own projects / maintained by us, so if one day it needs an update, we will do it, don’t worry about.
We just tested it with the latest version of WP, WC and PHP. We have made some minor changes to be compatible with WC CRUD.
Sorry for all this time without update! In the future, we will update the compatibility information, you are right in your suggestion.
Kind regards,
Hi, @mjitecfrontend01.
Please, open a new thread for every new question. And, if you want to ask something about this reply, please, use our contact form (https://www.wp-centrics.com/contact-support/), because this feature it’s only available in Fish and Ships Pro, and this support forum it’s for the free version only.
In Fish and Ships Pro you can use the selectors “cart total with tax” or “cart total without tax”, which takes the value with discounts applied. But if for example, you have a 10% off coupon applied, you can’t get the price of each product with discount in the rule selectors: The product price value will be the price before coupon applied, because it only applies to the cart totals.
Kind regards,
Carles Martin- This reply was modified 11 months, 2 weeks ago by wp-centrics.
After a while, I close this topic. Please, open a new one if you still need assistance.
Best regards,
Carles MartinAfter a while, I close this topic. Please, open a new one if you still need assistance.
Best regards,
Carles MartinGlad 2 help!
Hi @mjitecfrontend01, thank you for your interest.
It can be done in this way:
- Set group-by to “All grouped together” (you can also use group by shipping class if you use shipping classes instead of categories below)
- Set this rules:
#1 WHERE In Shipping class “B” (or Category “B”, but only in F&S Pro), price 0
#2 WHERE In Shipping class “A” (or Category “A”, but only in F&S Pro) AND Price MIN >= 600, MAX = 0 (zero acts as wildcard), Price 0, Special action “Stop. Skip next rules”
#3 WHERE In Shipping class “A” (or Category “A”, but only in F&S Pro), Price $5
- Leave checked the option “Zero shipping rate calculation will offer free shipping.”
…and that’s all!!!
…support in www.ads-software.com are for free version only. Please, contact us through our form for more questions about:
https://www.wp-centrics.com/contact-support/Kind regards,
Carles Martin- This reply was modified 11 months, 4 weeks ago by wp-centrics.
- This reply was modified 11 months, 4 weeks ago by wp-centrics.