How-to: Hide Private Messaging notifier box on CheckOut page – UserPro Forums https://forum.userproplugin.com/forums/topic/how-to-hide-private-messaging-notifier-box-on-checkout-page/feed/ Sat, 27 Apr 2024 23:52:42 +0000 https://bbpress.org/?v=2.6.2 en-US https://forum.userproplugin.com/forums/topic/how-to-hide-private-messaging-notifier-box-on-checkout-page/#post-43303 <![CDATA[How-to: Hide Private Messaging notifier box on CheckOut page]]> https://forum.userproplugin.com/forums/topic/how-to-hide-private-messaging-notifier-box-on-checkout-page/#post-43303 Thu, 09 Oct 2014 13:05:51 +0000 Peter Kulcsár I think the message notifier is not needed on the CheckOut page, because it is creating a distraction :), Your buyer maybe click on that and forget to order…

So you need to edit only one file for order to work this:
File: /wp-content/plugins/userpro-messaging/functions/hooks-actions.php

Line: 105

Add global $woocommerce; below function.

Then edit this line to hide message notifier on CheckOut.
if (userpro_is_logged_in()){
to
if (userpro_is_logged_in() && ( ! is_checkout())){

Regards,
Peter.

]]>