WPIntell

Source evidence

Enable or Disable

WP PleaseWait – Loading Screen · support · 2021-03-25T09:19:00+00:00

complaintsentiment
mediumseverity
0.87relevance
1replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

4 / 20 rows with source links

20.0% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

16 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
ketandebroy unresolved
Hi … can I disable it for desktop view keeping active for mobile view? The page I need help with: [ log in to see the link] Absolutely, yes. You have 2 options to handle this: – By css: Just hide in on desktop view by media query @media screen and (min-width: 768px) { .pg-loading-screen { visibility: hidden !important; opatity: 0 !important; display: none !important; } } – By WP Hooks: You should have a function to check if the user session is desktop device or not, then add a custom filter to your functions.php like this: add_filter( 'wp_pleasewait_enable', function ($is_enable) { if ( is_on_desktop() ) { return false; } return $is_enable; }, 10, 1);

Comments

1 shown
ngoclb 2021-05-21T03:21:00+00:00

Absolutely, yes. You have 2 options to handle this: – By css: Just hide in on desktop view by media query @media screen and (min-width: 768px) { .pg-loading-screen { visibility: hidden !important; opatity: 0 !important; display: none !important; } } – By WP Hooks: You should have a function to check if the user session is desktop device or not, then add a custom filter to your functions.php like this: add_filter( 'wp_pleasewait_enable', function ($is_enable) { if ( is_on_desktop() ) { return false; } return $is_enable; }, 10, 1);