• Resolved arusstel

    (@arusstel)


    Is it possible to remove notices such as “Pick up at XX:XX hours” in the cart & checkout page in one of those TD column.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author WP Scripts

    (@wpscripts)

    Hello @arusstel

    We are replacing this td with date and time selector in next version. If you want this change right away, I can suggest some code editing which you can do using a FTP client or from WordPress Plugin Editor.

    Inside plugin folder, find this file, food-store/includes/class-wfs-frontend.php. And comment the line number 28 and 29. Please check the screenshot.

    https://prntscr.com/tpsnyq

    I hope this will resolve your query for now. Let us know.

    Thanks & Regards,
    Team WP Scripts

    Thread Starter arusstel

    (@arusstel)

    Thank you. That helps!

    it didn’t work for me, it still appears on checkout and woocomerce orders.

    By the way, it’s a great plugin!

    Plugin Author WP Scripts

    (@wpscripts)

    Hello,

    We are working on some filters that can help to remove the specific sections from the checkout page. This version will be release on this weekend positively.

    Thank you for being in touch.

    Thanks & Regards,
    Team WP Scripts

    Plugin Author WP Scripts

    (@wpscripts)

    Hello @arusstel @pliniohenrique,

    With version 1.1.4 following are the filters that can disable services at specific places.

    Disable displaying services fields on checkout page,
    add_filter( ‘wfs_checkout_show_services’, ‘__return_false’ );

    Disable displying services data on Receipt page after a order is placed,
    add_filter( ‘wfs_receipt_show_services’, ‘__return_false’ );

    Disable showiing services on email notification,
    add_filter( ‘wfs_email_notification_show_services’, ‘__return_false’ );

    Disable showing Services columns in Admin Order Listing page,
    add_filter( ‘wfs_admin_columns_show_services’, ‘__return_false’ );

    Disable showing services data on Admin Order Details Page,
    add_filter( ‘wfs_admin_order_detail_show_services’, ‘__return_false’ );

    You have to use these filters on your theme function files or at a place which won’t be removed on update.

    Thanks & Regards,
    Team WP Scripts

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Remove notices on Cart & Checkout Page’ is closed to new replies.