Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter jonahall

    (@jonahall)

    Yes, sorry mistyped – Max Mega Menu is what we are using. So would Menu Swapper allow us to use Max Mega Menu in that way?

    Thread Starter jonahall

    (@jonahall)

    Hmm – 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!

    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?

    Here 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

    Thread Starter jonahall

    (@jonahall)

    Resolved

    Thread Starter jonahall

    (@jonahall)

    Sorry – 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!

Viewing 6 replies - 1 through 6 (of 6 total)