• Hi there,

    In the order confirmation screen, for me it shows:
    Pickup Store<span class="colon">: </span><span></span>

    I’ve tracked the issue to plugin root/includes/wps-init.php:203 removed the extra spans, left only the label; for me it works, but most probabbly others have the same issue.

    Hope it helps!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Keylor Mendoza

    (@keylorcr)

    Hello @rwky

    Thank you for your feedback. I’ve seen what you say but this is not an issue. The extra span contains the checkout notification that is setting up in the plugin configuration page.

    However, I will beautify this functionality in the next release.

    I invite you to leave a review if the plugin was helpful for you.

    Regards

    Hey @keylorcr just checked your last update and the issue it’s still there.

    I’ve also checked the sttings page and with everything disabled it stills displays that unparsed HTML.

    barryhealy123

    (@barryhealy123)

    Hi,

    I have this problem also.

    I followed your advice @rwky, which has cleared the issue. Hopefully this won’t be in the next update as this is a really helpful little plugin!

    Plugin Author Keylor Mendoza

    (@keylorcr)

    Hey guys @rwky @barryhealy123

    I’ve released version 1.5.20 where a new filter wps_order_shipping_item_label was added to fix the issue you are facing.

    You can try something like this:

    add_filter('wps_order_shipping_item_label', function($output, $message) {
        return 'Testing: ' . $message;
    }, 10, 2);

    Let me know if this works for you

    Regards

    Emer

    (@emcgal)

    Hi Keylor,
    Great timing. I just installed the plugin and found this issue.

    Your code fixed it except ……

    This is showing on the order form rather than the checkout for me and the field on the settings page gives the impression this is Checkout notification field only and the tool tip says is the ‘Message will appear next to the shipping order’ which is does but then same message on the order seems weird. I am just took out the message on the order page and entered my own :-). Just letting you know. Thanks.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘order received screen has a bug’ is closed to new replies.