Zack Pyle
Forum Replies Created
-
@talextech Happy Friday! Just checking in on this update. Thanks!
Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] Cannot redeclare acf_print_menu_section()@hwk-fr Unfortunately I don’t have much to go on. Let’s pause and if I can get more info I will come back and give you more to go on!
This is a PHP 8.4 notice: https://php.watch/versions/8.4/implicitly-marking-parameter-type-nullable-deprecated
Forum: Plugins
In reply to: [Flexible Table Block] Changelog errorHa, ok. Wasn’t crazy. Seemed a little strange but wasn’t sure what it should be…
Forum: Plugins
In reply to: [Flexible Table Block] Changelog errorActually based on your previous changelog, I guess not? π€·πΌββοΈ Never mind
WP 6.9
Plugin Version 6.1.0Forum: Plugins
In reply to: [Optima Express IDX] PHP Deprecation Warnings and ErrorsJust checking in here. It’s been a month since this was reported. Thanks!
Forum: Plugins
In reply to: [SVG Support] Console Logging?Just checking on this as it’s been over 2 months? haha
Can anyone else replicate this?
Forum: Plugins
In reply to: [Code Block Pro - Beautiful Syntax Highlighting] Disable FontsThanks Kevin! I’ve created a PR that adds a filter to handle this globally. You can check it out here. The PR adds a
code_block_pro_load_fontsfilter that is backwards compatible but gives an easy way to disable the fonts from loading globally. Let me know what you think!Forum: Plugins
In reply to: [Code Block Pro - Beautiful Syntax Highlighting] Disable FontsOk thanks. I’ll give it a try!
I have used it in like 100 posts, so it’s not feasible to go in to each and set them all to system :/Forum: Plugins
In reply to: [Relevanssi - A Better Search] SEOPress No Index Checkbox MissingLooks like that function has been moved/renamed. It used to live in the main plugin file, but I don’t see it there anymore in the latest version.
Maybe useseopress_init()since that’s unlikely to change since it’s not tied to a feature?Yes, no need for you to do anything. I’m fine with doing the triple square bracket when adding a Beaver Builder shortcode. It’s not often. Thanks for checking though
@kbat82 Beaver Builder support responded:
Its been like this since around July 2015 when WP blocked the use of shortcodes in HTML attributes and styles.
The workaround is toΒ escape the escape using triple square brackets
Yeah, looks like they have their own functions for rendering shortcodes at the right time in the page build and they are respecting the double square brackets for standard shortcodes, but not their own. I have submitted a ticket for them to look at and see if they consider it a bug (I do)
Either way, I have hooked into their filter to escape them if they have the double square bracket for now:function pre_escape_beaver_builder_shortcodes($content) {
return preg_replace_callback('/[[(wpbb\s+[^]]+)]]/i', function($matches) {
return '[' . $matches[1] . ']';
}, $content);
}
add_filter('fl_builder_before_render_shortcodes', 'pre_escape_beaver_builder_shortcodes', 9);