jonahall
Forum Replies Created
-
Forum: Plugins
In reply to: [Max Mega Menu] Multiple main menusYes, sorry mistyped – Max Mega Menu is what we are using. So would Menu Swapper allow us to use Max Mega Menu in that way?
Forum: Plugins
In reply to: [Parcel2Go Shipping] Customer Parcel CollectionHmm – thanks for that.
The page you linked to says:
———————————————————–
Creating Orders
Tracking
Payments including : Prepay, Cards, External, On Account.
Drop shop geolocation
Quoting
Labels
Advanced address rules for international addresses
———————————————————–Nothing about parcel collection?
This is not our area of expertise – do you have any links to companies who have done work using your API in a similar way previously? I’d imagine creating this and integrating it into WooCommerce is a non-trivial task, so it would be good to talk to a company who could help!
Forum: Plugins
In reply to: [Service Area Postcode Checker] How do i input list for UK postcodes?How granular are you being with the postcodes?
You can use a wild card.
So if you serviced everyone with a Milton Keynes postcode then you would put:
MK*:Yes, we work in that area
Or if you are going to postal districts, then:
MK42*:Great, we work in the MK42 postcode.
Any help?
Forum: Plugins
In reply to: [Service Area Postcode Checker] Hiding search query from end of resultsHere is what I just did to solve this.
Find the my_services_postcode_checker.js file (it is in the js folder)
Line 57 is currently
element.children(‘.success-msg’).children(‘.success-return-msg’).html(result[1]);
I replaced this with:
——————————————————————
var myString = result[1];
var newString = myString.slice(0, -7);
element.children(‘.success-msg’).children(‘.success-return-msg’).html(newString);——————————————————————
This removes seven characters from the end of the ‘success’ message (in my case that was ‘- SO14*’. Of course this does rely on the initial search query being a known number of characters. If it isn’t you will have to do something a bit cleverer – perhaps look through the string from the end > beginning for the first ‘-‘ character and removing that and the ones after.
Hope this helps someone.
Jon
Forum: Plugins
In reply to: [Gift Aid for WooCommerce] PHP WarningResolved
Forum: Plugins
In reply to: [Gift Aid for WooCommerce] PHP WarningSorry – you can ignore this! The copy of the plugin I was given to install had not downloaded properly. I redownloaded a new copy, reinstalled – and all is well! 🙂
Thanks!