thatwebsiteisme
Forum Replies Created
-
Forum: Plugins
In reply to: [Favorites] Query Loop Posts in GutenbergMight be a bit late to the party but this is what I got to make it work:
function fav_plugin_id_render($block_content, $block) { if ($block['blockName'] === 'core/shortcode') { $block_content = str_replace("{{post_id}}", get_the_ID(), $block_content); } return $block_content; } add_filter('render_block', 'fav_plugin_id_render', 10, 2);And so my shortcodes in the Query Loops become:
[favorite_button post_id="{{post_id}}"]Found the idea from: https://wordpress.stackexchange.com/questions/417823/get-the-id-retrieves-same-id-on-gutenbergs-query-loop
Check out a previous support post here: https://ww.wp.xz.cn/support/topic/disable-filter-posts-and-media-logging/
Forum: Plugins
In reply to: [Responsify WP] Doesn’t work with divi themeI did some digging and you are right in that Divi 3 stops it working.
Ignore my above advice. Nothing of those will work at the moment.
Forum: Plugins
In reply to: [Responsify WP] Doesn’t work with divi themeYo,
I have been using Divi and Divi Builder plus a few cache plugins etc and might be able to help.
Try the following:
1) Keep the Markup pattern as IMG (To keep the CSS magic).
2) Clear your cache. (Different folks, different keystrokes)
3) Make sure you are logged out of WP (or visiting it in private/incognito).You should see it now.