wbmessenger
Forum Replies Created
-
Forum: Plugins
In reply to: [Widgets for Google Reviews] Mobile Display IssuesI can confirm the issue was happening in the latest version of Chrome on a MacBook Pro.
I’ve replaced the shortcode with one generated from your 3rd party site in order to update the reviews on a daily basis. It seems to have resolved itself.
I do have another issue I’m seeing which I’ll present in another thread.
Thank you!
Forum: Plugins
In reply to: [Lazy Load for Videos] WordPress 5.8 PHP NitoceFor anyone needing a patch for this issue see below. Essentially we just need to check the WP version and update the dependency.
File: /lazy-load-for-videos/src/php/class-editor.php
Line: Replace lines 19-24 with below snippet./* * - Check the WordPress version and adjust the editor dependency if less that v5.2 * - This throws a PHP notice about improperly enqueueing a script file if left unchecked */ global $wp_version; version_compare( $wp_version, '5.2', '>' ) ? $wp_editor = 'wp-block-editor' : $wp_editor = 'wp-editor'; wp_enqueue_script( 'lazyload-editor-js', LL_URL . 'public/js/editor.js', [ 'wp-blocks', 'wp-element', $wp_editor, 'wp-components', 'lodash' ], SCRIPT_DEBUG ? null : LL_VERSION );
- This reply was modified 3 years, 3 months ago by wbmessenger.
- This reply was modified 3 years, 3 months ago by wbmessenger.
Forum: Plugins
In reply to: [Bootstrap Blocks] WordPress 5.8 new PHP NoticeI did see this same notice pop up with the Yoast SEO plugin and a Lazy Load for Videos plugin. Yoast has the update in their queue. Reported to Lazy Load but not sure if it’s actively managed.
Forum: Plugins
In reply to: [Bootstrap Blocks] WordPress 5.8 new PHP NoticeThis is great info, thanks so much for the responsiveness. Love the plugin and will continue to use on most of my sites with Bootstrap.
Forum: Plugins
In reply to: [Bootstrap Blocks] WordPress 5.8 new PHP NoticeQuick question.. For my own education, are you able to provide a changelog and example of how you implemented this fix? I feel I may run into this with other plugins and will have to add a patch myself.
Thanks again.
Forum: Plugins
In reply to: [Bootstrap Blocks] WordPress 5.8 new PHP NoticeThat’s great! Thank you.
Forum: Plugins
In reply to: [Expanding Archives] 403 admin-ajax.phpThank you Ashley!
Naturally, as soon as I posted this topic I did a little more troubleshooting and got it to work. I’m not 100% sure why but clearing my Wp Engine cache seemed to fix it (for the time being).
Just need to figure out how to prevent it from happening again in the future.
Thank you for the quick response!
No problem! Just wanted to make sure I wasn’t missing something.
As an alternative I guess I could just setup a custom options page within ACF for Galleries and use the acf_post_id=”option” parameter within the shortcode. I think that will work…
@photo, thanks for the reply. I was able to resolve this issue. There was a 404 redirect plugin causing a conflict. It was re-directing the 2nd page back to the original URL. I deactivated the plugin and setup a different redirection plugin, all is good.