[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fr2XTLf0x9LBMcPmf-b140r6aaJ4NJ74QSN-ALtVxqWU":3},{"slug":4,"display_name":4,"profile_url":5,"plugin_count":6,"total_installs":7,"avg_security_score":8,"avg_patch_time_days":9,"trust_score":10,"computed_at":11,"plugins":12},"landwire","https:\u002F\u002Fprofiles.wordpress.org\u002Flandwire\u002F",3,1370,99,154,78,"2026-04-04T16:59:54.119Z",[13,39,58],{"slug":14,"name":15,"version":16,"author":4,"author_profile":5,"description":17,"short_description":18,"active_installs":19,"downloaded":20,"rating":21,"num_ratings":22,"last_updated":23,"tested_up_to":24,"requires_at_least":25,"requires_php":26,"tags":27,"homepage":33,"download_link":34,"security_score":8,"vuln_count":35,"unpatched_count":36,"last_vuln_date":37,"fetched_at":38},"responsive-block-control","Responsive Block Control – Hide blocks based on display width","1.3.2","\u003Cp>Responsive Block Control adds responsive toggles to a “Visibility” panel of the block editor, to show or hide blocks according to screen width.\u003C\u002Fp>\n\u003Ch3>Security\u003C\u002Fh3>\n\u003Cp>\u003Cstrong>Version 1.3.1 resolves a stored cross‑site scripting (XSS) vulnerability (CVE‑2025‑62135) affecting earlier versions (\u003C= 1.2.9).\u003C\u002Fstrong>\u003Cbr \u002F>\nUsers with contributor access or higher should update immediately.\u003C\u002Fp>\n\u003Cp>If you discover a security vulnerability, please report it responsibly to: security@saschapaukner.de\u003C\u002Fp>\n\u003Ch4>Limitations\u003C\u002Fh4>\n\u003Cp>Does not work with the Classic Block, Widget Block or Widget Area Block [‘core\u002Ffreeform’, ‘core\u002Flegacy-widget’, ‘core\u002Fwidget-area’], as the those blocks do not support block attributes. Does also not work with the HTML Block [‘core\u002Fhtml’] inside the Widget Screen, as this one also does not support block attributes there.\u003C\u002Fp>\n\u003Ch3>Configuration\u003C\u002Fh3>\n\u003Ch4>Override existing breakpoints\u003C\u002Fh4>\n\u003Cpre>\u003Ccode>function override_responsive_block_control_breakpoints($break_points) {\n     $break_points['base'] = 0;\n     $break_points['mobile'] = 400;\n     $break_points['tablet'] = 800;\n     $break_points['desktop'] = 1000;\n     $break_points['wide'] = 1600;\n\n     return $break_points;\n }\n\n add_filter('responsive_block_control_breakpoints', 'override_responsive_block_control_breakpoints');\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>Provide custom CSS\u003C\u002Fh4>\n\u003Cp>You can provide your own CSS rules per breakpoint using the new filter responsive_block_control_custom_css_rules.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>add_filter('responsive_block_control_custom_css_rules', function($rules) {\n    return [\n        'mobile'  => 'display: none !important;',\n        'tablet'  => 'display: none !important;',\n        'desktop' => 'display: none !important;',\n        'wide'    => 'display: none !important;',\n    ];\n});\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>Stop css output completely\u003C\u002Fh4>\n\u003Cpre>\u003Ccode> function override_responsive_block_control_add_css() {\n      return false;\n  }\n  add_filter('responsive_block_control_breakpoints', 'override_responsive_block_control_add_css');\n\u003C\u002Fcode>\u003C\u002Fpre>\n","Responsive Block Control adds responsive toggles to a \"Visibility\" panel of the block editor, to show or hide blocks according to screen width.",1000,14054,100,4,"2026-02-21T22:00:00.000Z","6.9.4","5.2","7.4",[28,29,30,31,32],"block","hide-content","responsive","visibility","width","","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fresponsive-block-control.1.3.2.zip",1,0,"2025-12-31 00:00:00","2026-03-15T15:16:48.613Z",{"slug":40,"name":41,"version":42,"author":4,"author_profile":5,"description":43,"short_description":44,"active_installs":45,"downloaded":46,"rating":21,"num_ratings":47,"last_updated":48,"tested_up_to":24,"requires_at_least":49,"requires_php":50,"tags":51,"homepage":33,"download_link":55,"security_score":56,"vuln_count":35,"unpatched_count":36,"last_vuln_date":57,"fetched_at":38},"block-logic","Block Logic – Full Block Display Control","2.1.5","\u003Cp>Block Logic adds a “Block Logic” field to the “Advanced” section of the block editor (i.e Gutenberg), that lets you show or hide any block based on conditions. You can use WordPress’ \u003Ca href=\"https:\u002F\u002Fcodex.wordpress.org\u002FConditional_Tags\" rel=\"nofollow ugc\">Conditional Tags\u003C\u002Fa> or any general PHP code.\u003C\u002Fp>\n\u003Ch3>Show or hide blocks based on\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>User role\u003C\u002Fli>\n\u003Cli>User login status\u003C\u002Fli>\n\u003Cli>Post status\u003C\u002Fli>\n\u003Cli>Date and time\u003C\u002Fli>\n\u003Cli>The result of a custom PHP function\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Features\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>Show or hide any block using conditions\u003C\u002Fli>\n\u003Cli>Combine conditions with “and” or “or” operators. See FAQ Writing Logic Code\u003C\u002Fli>\n\u003Cli>Full flexibility: use any condition you want (you can extend base functionality with filters)\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Limitations\u003C\u002Fh3>\n\u003Cp>Does not work with the Classic Block, Widget Block or Widget Area Block [‘core\u002Ffreeform’, ‘core\u002Flegacy-widget’, ‘core\u002Fwidget-area’], as the those blocks do not support block attributes. Does also not work with the HTML Block [‘core\u002Fhtml’] inside the Widget Screen, as this one also does not support block attributes there.\u003C\u002Fp>\n\u003Ch3>Configuration\u003C\u002Fh3>\n\u003Cp>Just activate the plugin. The “Block Logic” textbox will then appear in the “Advanced” section of the Gutenberg editor.\u003C\u002Fp>\n\u003Ch3>Breaking changes since 2.0.0\u003C\u002Fh3>\n\u003Cp>Since version 2.0.0 the code does not get eval’d directly, but there is a whitelist of allowed functions that can be extended via a filter.\u003C\u002Fp>\n\u003Ch3>Upgrade Notice\u003C\u002Fh3>\n\u003Cp>When upgrading to version 2.x you will need to update your logic. No \u003Ccode>return\u003C\u002Fcode> is allowed anymore and no semicolons in code as only expressions are evaluated. See FAQ Section \u003Cstrong>Writing Logic Code\u003C\u002Fstrong>.\u003C\u002Fp>\n","Block Logic adds a \"Block Logic\" field to the block editor, that lets you show or hide any block based on conditions.",300,5319,13,"2026-01-05T16:01:00.000Z","6.5","5.6",[28,52,53,54,31],"conditional","conditions","logic","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fblock-logic.2.1.5.zip",98,"2025-03-21 17:53:40",{"slug":59,"name":60,"version":16,"author":4,"author_profile":5,"description":61,"short_description":62,"active_installs":63,"downloaded":64,"rating":21,"num_ratings":35,"last_updated":65,"tested_up_to":66,"requires_at_least":67,"requires_php":26,"tags":68,"homepage":33,"download_link":72,"security_score":21,"vuln_count":36,"unpatched_count":36,"last_vuln_date":73,"fetched_at":38},"disable-block","Disable Block – Hide blocks in the frontend","\u003Cp>Disable Block adds a simple button to the editor to disable the block on the frontend, hiding it from viewers.\u003Cbr \u002F>\nPerfect for blocks that are not ready to be viewed by the public, but you are working on in the backend.\u003C\u002Fp>\n\u003Cp>It adds subtle markings in the editor, so that you can easily see which blocks are disabled.\u003Cbr \u002F>\nNow it also adds some markings in the list view of the editor.\u003C\u002Fp>\n\u003Ch4>Features\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Show or hide blocks with one click\u003C\u002Fli>\n\u003Cli>Adds subtle markings and block name, so you can see which block is disabled, leaving most of the design in the editor intact.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Limitations\u003C\u002Fh4>\n\u003Cp>Does not work with the Classic Block, Widget Block or Widget Area Block [‘core\u002Ffreeform’, ‘core\u002Flegacy-widget’, ‘core\u002Fwidget-area’], as the those blocks do not support block attributes. Does also not work with the HTML Block [‘core\u002Fhtml’] inside the Widget Screen, as this one also does not support block attributes there.\u003C\u002Fp>\n\u003Ch4>Configuration\u003C\u002Fh4>\n\u003Cp>Just activate the plugin. The “Disable Block” button will then appear in the toolbar of each block.\u003C\u002Fp>\n","Disable Block adds a simple button to the editor to disable the block on the frontend, hiding it from viewers.",70,1694,"2025-07-13T08:58:00.000Z","6.8.5","5.0",[28,69,59,70,71],"disable","hide","hide-block","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fdisable-block.1.3.2.zip",null]