gatfuts
Forum Replies Created
-
Hello,
After many frustrating hours of troubleshooting, I finally discovered my site had some sort of conflict with Jetengine and Rank Math, which is preventing the lightbox being displayed properly on all but the first image gallery on a page.
Thankfully I stumbled upon this thread, which details the exact issue and a current workaround.A big thank you to @gfdesign for highlighting this issue, and posting the temporary workaround script which is working a treat.
I see this was escalated to the Rank Math support team. Was this ever properly resolved, or will it be fixed in a future version?
Forum: Plugins
In reply to: [WP Airbnb Review Slider] PHP 8.0 Warning MessageGreat, thank you very much for the quick update!
Forum: Plugins
In reply to: [Cookie Notice & Compliance for GDPR / CCPA] PHP 8.0 Warning MessageNo response yet, so went about fixing it myself. Change line 173 to:
. ( (isset($options['refuse_opt']) && $options['refuse_opt'] === true) ? '<a href="#" id="cn-refuse-cookie" data-cookie-set="refuse" class="cn-set-cookie ' . $options['button_class'] . ( $options['css_class'] !== '' ? ' cn-button-custom ' . $options['css_class'] : '' ) . '" aria-label="' . esc_attr( $options['refuse_text'] ) . '"' . ( $options['css_class'] == '' ? ' style="background-color: ' . esc_attr( $options['colors']['button'] ) . '"' : '' ) . '>' . esc_html( $options['refuse_text'] ) . '</a>' : '' )And line 177 to:
' . ( (isset($options['refuse_opt']) && $options['refuse_opt'] === true && $options['revoke_cookies'] == true) ?Edit: It looks like the issue is not with Rank Math, but another incompatible plugin. In my case it was one that had not been updated in a long time. Disabling that plugin gave me back the Rank Math options in the classic editor.
- This reply was modified 5 years, 7 months ago by gatfuts. Reason: added new info