Bolder Elements
Forum Replies Created
-
It seems both of you may be using the same FedEx plugin. It’s possible that the plugin is using the same hook and altering the results. Another user had a different shipping method that also used this same hook, but instead of undoing its results, it doubled them creating four shipping lines instead of two. They had to contact the developer of that plugin for further assistance. You may want to contact the developer of the FedEx plugin and ask if it connects to the ‘woocommerce_cart_shipping_packages’ action hook.
Forum: Plugins
In reply to: [Multiple Packages for WooCommerce] All Shipping Options ShownI am sorry to hear the feature does not seem to be working for you. I’m afraid I cannot replicate an issue on my own server so it’s difficult to say exactly why. Have you tried setting it to ‘Per Item’? This would create a separate shipping line for every item in the cart regardless of any other settings. If this does not work, then the plugin is not triggering.
The necessary hook is the WooCommerce core, so as long as you are running WC 2.1 or newer and have not altered the plugin itself, there is no reason the hook wouldn’t be there. However, other plugins may hook into the same filter and undo any changes this plugin makes. I am aware of a couple shipping methods that do and make it impossible to split the cart into packages. What other shipping related plugins do you have installed?
Forum: Plugins
In reply to: [WooCommerce] Prices and Weights Have Different FormatsJust wanted to come back and say thank you. I guessed I missed the memo earlier. Will make sanitization a bit more tricky but at least I know now to look for it. I guess it’s not an incredibly common occurrence but good to check for π
Forum: Plugins
In reply to: [Multiple Packages for WooCommerce] how to change shipping titles in WC3I’m afraid I do not know. I copied the code directly from the tutorial to my test server and it worked just fine for me on WooCommerce 3.3 (beta). Did you modify it in any way?
http://www.bolderelements.net/support/knowledgebase/change-shipping-package-title/
Forum: Plugins
In reply to: [Multiple Packages for WooCommerce] Conflict with WC MarketplaceI’m sorry I couldn’t get to this sooner but I’m glad you were able to get things working again! Was there anything you needed to modify in your settings or code for this plugin?
If you need to use two different shipping methods, so FedEx for one and the Free Shipping method for the other, then yes, you will need to split the cart into packages. This is the only way to show two separate shipping lines in the order summary, one for each group. This plugin should be able to help with that π
Forum: Plugins
In reply to: [Multiple Packages for WooCommerce] product name wrappingIt’s likely a CSS issue. If the shipping options are floating right instead of being right aligned, this allows for non-floating text to wrap around it. If you modify the CSS a little, you should be able to get it to display correctly.
Forum: Plugins
In reply to: [Multiple Packages for WooCommerce] Buggy with subscriptions…Have you contacted the developer of the subscriptions plugin? This plugin is mainly a tool to setup the packages without PHP knowledge. However the actual packages feature is managed through WooCommerce itself. If you are using the subscriptions plugin sold through WooCommerce.com it should in theory be compatible, but if it’s a third party plugin, it would be best to double check with them that it has been tested with packages enabled. If they are not retrieving the data from the correct place, this could happen.
Forum: Plugins
In reply to: [Multiple Packages for WooCommerce] Multiple Packages with coupon codesI’m not sure I understand the question. Does it work correctly when you have just one package? Does it show you two options, free and paid? This plugin does not modify the shipping methods coming through, nor does it affect how coupons are applied, but it can prevent an option from showing up if you have not given permission for the ‘Free Shipping’ method to appear.
Your free shipping method does not have any shipping class based conditions so it shouldn’t be an issue which class the product is assigned to unless it is not allowed to work with Free Shipping.
Forum: Plugins
In reply to: [WooCommerce] REQUEST: Ability to qualify for more than one zoneQuestion if I may: What if there was the ability to add additional “sets” of zones. So essentially you would have two tables (or more) containing zones including the ‘Rest of the World’ zone. Then the rules would all stay the same, however you could have multiple sets, and the customer would be able to qualify for one zone in each set. Putting it in the core would obviously be confusing and unnecessary for most users, but in cases like this, which continue to popup it seems, it may be very helpful. I tried to come up with some code that would make this happen, but I found there are next to nothing for hooks and filters in relation to the shipping zones. Seems odd since your modules are usually full of them. Is there a reason they are so protected? Curious minds would like to know π
Forum: Plugins
In reply to: [Polylang] Help with plugin compatibilityIs there something else I can do? I see you have a WPML compatibility mode. Can I register strings using those functions? I already have a compatibility for WPML. I thought it would be a simple copy/paste and change a couple functions. I’m not really sure how an XML file is going to help. I have fields in my shipping settings that are custom entered by users so it could literally be anything and have a variety of save names depending on how many methods and rows there are in each method. I just want to register this text when my settings save the same way I would with WPML π
Thanks for responding. Glad to hear it works on your end, I’m not sure why it only happens with this plugin and not my others but I guess it’s not much of a big deal then. I’m not worried about finding the conflict because I don’t need it to work for my purpose but if I come across it again, I’ll let you know π
Forum: Plugins
In reply to: [Multiple Packages for WooCommerce] Problems usin this pluginMy apologies for the delay in responding to this ticket. It seems my email notifications have not been working so I was unaware of any new topics in this forum. It does seem that there are some issues since the WooCommerce zones were introduced. I am working on a 2.0 to work directly with the zones in hopes of making it more useful to this new feature. In the meantime I am trying to clear up some issues being experienced right now such as the blank headlines.
In regards to the unchecking of the box, I am currently looking into this. The same actually goes for saving as well. At the moment, you complete the action twice in a row, it will save after the second attempt (no refreshing or anything in between tries). I am not entirely positive as to why that is, but it should at least help you to modify the settings until then.
Thank you for your patience. I will be releasing the bug fix over the next day or two to include a couple fixes for WooCommerce 2.6+ and WPML users.
My apologies for the delay in responding to your ticket. It seems my email notifications have stopped sending so I was unaware of your message.
I am currently developing 2.0 of this plugin so I am happy to take any and all suggestions. It may be useful having these settings done via the shipping zones so that you can opt to enable it for only certain zones.
It looks like I had another user ask me this in the past. I do not have any developer hooks in the current version, but it is possible to modify the file to make it work.
If you open the main file, multiple-packages-shipping.php, on line 48 you will find the following line of code:
function generate_packages( $packages ) {Just after this, start a new line with the following code:
$shipping_zone = WC_Shipping_Zones::get_zone_matching_package( $packages[0] ); if( $shipping_zone->get_id() != 4 ) return $packages;Adding the above code snippet to the plugin file will split the package for zone 1 and ignore the others. You can change this to the ID of the zone you are trying to split. Perhaps the easiest place to find the zone ID is in the URL. When you are editing a particular zone, in the URL you will see something like zone_id=4. The ‘4’ is your zone ID number.
If you have any further questions, please let me know!
- This reply was modified 9 years, 3 months ago by Bolder Elements.
Forum: Fixing WordPress
In reply to: Cron jobs at server not workingWell for anyone else who comes across this, disabling the WordPress debugger stopped this from happening. The cron now runs with no errors.