[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fBB7OFk2ge1qFA2tIn9fBseJdIKGQdtzZTt8O07FZyXE":3},{"slug":4,"name":5,"version":6,"author":7,"author_profile":8,"description":9,"short_description":10,"active_installs":11,"downloaded":12,"rating":13,"num_ratings":14,"last_updated":15,"tested_up_to":16,"requires_at_least":17,"requires_php":18,"tags":19,"homepage":18,"download_link":25,"security_score":26,"vuln_count":27,"unpatched_count":27,"last_vuln_date":28,"fetched_at":29,"vulnerabilities":30,"developer":31,"crawl_stats":28,"alternatives":38,"analysis":149,"fingerprints":205},"equal-height-columns","Equal Height Columns","1.2.1","MIGHTYminnow","https:\u002F\u002Fprofiles.wordpress.org\u002Fmightyminnow\u002F","\u003Cp>\u003Cstrong>Compatible with PHP 8.2\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Like this plugin? Please consider \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fsupport\u002Fview\u002Fplugin-reviews\u002Fequal-height-columns\" rel=\"ugc\">leaving a 5-star review\u003C\u002Fa>.\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Equal Height Columns lets you easily equalize the height of various columns and elements.\u003C\u002Fp>\n\u003Ch4>Features\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Target unlimited elements and element groups\u003C\u002Fli>\n\u003Cli>Specify simple CSS\u002FjQuery selectors to target elements\u003C\u002Fli>\n\u003Cli>Specify breakpoint to kick in only at certain screen sizes\u003C\u002Fli>\n\u003Cli>Easy to use admin interface\u003C\u002Fli>\n\u003Cli>Heights are equalized immediately after the page has loaded\u003C\u002Fli>\n\u003Cli>Fully responsive (automatically updates on resize and orientationchange events)\u003C\u002Fli>\n\u003Cli>Works on mobile devices\u003C\u002Fli>\n\u003Cli>Works across all modern browsers (including IE8)\u003C\u002Fli>\n\u003Cli>Comes with custom event listener to manually trigger\u003C\u002Fli>\n\u003Cli>Super small – 8kB jQuery file size\u003C\u002Fli>\n\u003Cli>Trigger custom ‘equalheight’ event to force resize\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Instructions\u003C\u002Fh4>\n\u003Col>\n\u003Cli>Navigate to \u003Cstrong>Settings > Equal Height Columns\u003C\u002Fstrong> in the WordPress admin.\u003C\u002Fli>\n\u003Cli>Enter a \u003Cem>selector\u003C\u002Fem> and \u003Cem>breakpoint\u003C\u002Fem> for the first \u003Cstrong>column group\u003C\u002Fstrong>.\u003C\u002Fli>\n\u003Cli>Add\u002Fremove column groups by clicking the “+ Add More” and “Remove” buttons.\u003C\u002Fli>\n\u003C\u002Fol>\n\u003Ch4>Advanced\u003C\u002Fh4>\n\u003Cp>Want to trigger the equalizing of the heights manually? No problem. You can skip entering a selector on the settings page and call the jQuery script yourself using one of two functions:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>jQuery( '.selector' ).initEqualHeights();\n\n\u002F\u002F Or\n\njQuery( '.selector' ).equalizeTheHeights();\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>The difference between these two functions is simply that \u003Ccode>initEqualHeights()\u003C\u002Fcode> will set up all the events for recalculating the heights when the window is resized or the global \u003Ccode>equalheights\u003C\u002Fcode> event is triggered, but \u003Ccode>equalizeTheHeights()\u003C\u002Fcode> will simply equalize the heights without involving any events.\u003C\u002Fp>\n\u003Cp>Both functions take three optional arguments, the minimum height (number of pixels), maximum height, and the breakpoint (below which the heights will revert to their original size):\u003C\u002Fp>\n\u003Cpre>\u003Ccode>jQuery( '.selector' ).initEqualHeights( minHeight, maxHeight, breakPoint );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>So an example might look like this:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>jQuery( '.selector' ).initEqualHeights( 200, 500, 768 );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>When entering a selector on the settings page or using the \u003Ccode>initEqualHeights()\u003C\u002Fcode> method this plugin also adds an event ‘equalheights’ to the window, allowing you to easily trigger the equalizing manually. This is useful if you have added new items to the page after it loads via AJAX. You can trigger the event like this:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>jQuery( window ).trigger( 'equalheights' );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>Another option for controlling which elements get equalized is the \u003Ccode>equal_height_columns_elements\u003C\u002Fcode> filter. This filter operates on the array of data that gets passed to the JS right before it is passed. This allows for developers to specify selectors that can’t be deleted from the settings page, and for programmaticly building selectors based on dynamic data. Here’s an example of how the filter can be used:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>add_filter( 'equal_height_columns_elements', 'custom_ehc_elements' );\nfunction custom_ehc_elements( $elements ) {\n\n    $elements['element-groups']['custom'] = array(\n        'selector'   => '.ehc-target', \u002F\u002F Selector goes here.\n        'breakpoint' => '768',\n    );\n\n    return $elements;\n}\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>The keys on the \u003Ccode>element-groups\u003C\u002Fcode> array used by selectors entered on the settings page will come in as numbered indexes, so to avoid collision it’s best to use named keys for any custom selectors (we’re using ‘custom’ in the example above, but any unique string will work).\u003C\u002Fp>\n\u003Cp>This plugin is \u003Ca href=\"https:\u002F\u002Fgithub.com\u002FMIGHTYminnow\u002Fequal-height-columns\" rel=\"nofollow ugc\">on Github\u003C\u002Fa> and pull requests are always welcome.\u003C\u002Fp>\n\u003Ch4>NEW: Multi rows\u003C\u002Fh4>\n\u003Cp>On version \u003Cstrong>1.2.0\u003C\u002Fstrong> we are introducing a new feature \u003Cem>(for now, only available via JavaScript)\u003C\u002Fem> that resolves a common issue if the row number of certain elements varies across breakpoints when the number of columns change.\u003C\u002Fp>\n\u003Cp>For example, if we have 2 columns for tablets and 3 columns for desktops, the third element in the group would be positioned on the second row for tablets but on the first row for desktops.\u003C\u002Fp>\n\u003Cp>Before this new feature, the equal height would be based on all the elements from the group. Now you can have “subgroups” for each row, and recalculate when the number of columns in the rows change.\u003C\u002Fp>\n\u003Cp>To use this new feature add the function once per breakpoint:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>jQuery( document ).equalHeight( selector, columns, minWidth, maxWidth );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>selector:\u003C\u002Fstrong> The selector of the group of elements that you want to apply the equal height.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>columns:\u003C\u002Fstrong> The number of columns per row on the breakpoint.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>minWidth:\u003C\u002Fstrong> The minimum width of the breakpoint. Use 1 for mobile.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>maxWidth:\u003C\u002Fstrong> The maximum width of the breakpoint. You can leave empty for the biggest breakpoint.\u003C\u002Fp>\n\u003Cp>The following example would apply equal height for headings with the class \u003Cstrong>.demo-heading\u003C\u002Fstrong> in a grid that has 1 column per row on mobile, 2 columns on tablet and 3 columns on desktop:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>$( document ).equalHeight( '.demo-heading', 1, 1, 767 ); \u002F\u002F 1 columns for 1px - 767px\n$( document ).equalHeight( '.demo-heading', 2, 768, 1024 ); \u002F\u002F 2 columns for 768px - 1024px\n$( document ).equalHeight( '.demo-heading', 3, 1025 ); \u002F\u002F 3 columns for 1025px (and above)\n\u003C\u002Fcode>\u003C\u002Fpre>\n","Easily equalize the height of columns or any collection of elements.",10000,98084,98,41,"2026-03-10T08:05:00.000Z","6.9.4","3.5","",[20,21,22,23,24],"column","div","element","equal","height","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fequal-height-columns.1.2.1.zip",100,0,null,"2026-03-15T15:16:48.613Z",[],{"slug":32,"display_name":7,"profile_url":8,"plugin_count":33,"total_installs":34,"avg_security_score":26,"avg_patch_time_days":35,"trust_score":36,"computed_at":37},"mightyminnow",4,11700,30,94,"2026-04-05T09:08:33.637Z",[39,64,87,108,129],{"slug":40,"name":41,"version":42,"author":43,"author_profile":44,"description":45,"short_description":46,"active_installs":47,"downloaded":48,"rating":13,"num_ratings":49,"last_updated":50,"tested_up_to":51,"requires_at_least":52,"requires_php":53,"tags":54,"homepage":59,"download_link":60,"security_score":61,"vuln_count":62,"unpatched_count":27,"last_vuln_date":63,"fetched_at":29},"make-column-clickable-elementor","Make Column Clickable for Elementor","1.6.2","Fernando Acosta","https:\u002F\u002Fprofiles.wordpress.org\u002Famgnando\u002F","\u003Cp>\u003Cem>Disclaimer: This plugin has no affiliation or support from Elementor Ltd., quite the opposite.\u003C\u002Fem>\u003C\u002Fp>\n\u003Cp>Easily make entire columns, sections and containers clickable in Elementor, not just individual elements.\u003C\u002Fp>\n\u003Cp>Add a link to any column, section or container, and your visitors will be able to click anywhere inside it — perfect for banners, call-to-action areas, and interactive layouts.\u003C\u002Fp>\n\u003Ch4>How to use it\u003C\u002Fh4>\n\u003Cp>After installing the plugin, open the Elementor editor, select a Column, Section or Container, and under the Layout settings you’ll find a field to add your custom link.\u003C\u002Fp>\n\u003Cp>Works seamlessly with internal and external links, Lightbox, and Elementor PRO popup triggers.\u003C\u002Fp>\n\u003Ch4>Looking for custom WooCommerce or Elementor development? Contact us at suporte@fernandoacosta.net\u003C\u002Fh4>\n","Make entire columns, sections and containers clickable in Elementor — improve navigation and user experience with just one link.",100000,754653,53,"2025-09-21T14:35:00.000Z","6.7.5","5.0","7.4",[20,55,56,57,58],"container","elementor","page-builder","section","https:\u002F\u002Ffernandoacosta.net\u002Fmake-column-clickable-elementor","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fmake-column-clickable-elementor.zip",99,1,"2025-09-22 00:00:00",{"slug":65,"name":66,"version":67,"author":68,"author_profile":69,"description":70,"short_description":71,"active_installs":72,"downloaded":73,"rating":74,"num_ratings":75,"last_updated":76,"tested_up_to":77,"requires_at_least":78,"requires_php":18,"tags":79,"homepage":84,"download_link":85,"security_score":86,"vuln_count":27,"unpatched_count":27,"last_vuln_date":28,"fetched_at":29},"column-shortcodes","Column Shortcodes","1.0.1","Tobias Schutter","https:\u002F\u002Fprofiles.wordpress.org\u002Ftschutter\u002F","\u003Cp>Adds shortcodes to easily create columns in your posts or pages.\u003C\u002Fp>\n\u003Cp>Sometimes you just need to divide your page into different columns. With this plugin you just select a column shortcode and it will add the column to the page. You can also change the padding of each individual column from the UI.\u003C\u002Fp>\n\u003Cp>There are 10 different column widths available from which you can make all combinations:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>full width (1\u002F1)\u003C\u002Fli>\n\u003Cli>half (1\u002F2)\u003C\u002Fli>\n\u003Cli>one third (1\u002F3)\u003C\u002Fli>\n\u003Cli>two third (2\u002F3)\u003C\u002Fli>\n\u003Cli>one fourth (1\u002F4)\u003C\u002Fli>\n\u003Cli>three fourth (3\u002F4)\u003C\u002Fli>\n\u003Cli>one fifth (1\u002F5)\u003C\u002Fli>\n\u003Cli>two fifth (2\u002F5)\u003C\u002Fli>\n\u003Cli>three fifth (3\u002F5)\u003C\u002Fli>\n\u003Cli>four fifth (4\u002F5)\u003C\u002Fli>\n\u003Cli>one sixth (1\u002F6)\u003C\u002Fli>\n\u003Cli>five sixth (5\u002F6)\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>A preset stylesheet is included, which you can also overwrite to you liking in your theme’s stylesheet.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Related Links:\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>http:\u002F\u002Fwww.codepresshq.com\u002F\u003C\u002Fli>\n\u003C\u002Ful>\n","Adds shortcodes to easily create columns in your posts or pages.",60000,893481,96,134,"2022-10-11T12:57:00.000Z","6.0.11","4.8",[20,80,81,82,83],"columns","divider","shortcode","shortcodes","https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fcolumn-shortcodes","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fcolumn-shortcodes.1.0.1.zip",85,{"slug":88,"name":89,"version":90,"author":91,"author_profile":92,"description":93,"short_description":94,"active_installs":95,"downloaded":96,"rating":97,"num_ratings":98,"last_updated":99,"tested_up_to":16,"requires_at_least":100,"requires_php":53,"tags":101,"homepage":106,"download_link":107,"security_score":26,"vuln_count":27,"unpatched_count":27,"last_vuln_date":28,"fetched_at":29},"cf7-styler-for-divi","Styler Mate for Contact Form 7","3.0.3","Fahim Reza","https:\u002F\u002Fprofiles.wordpress.org\u002Fbadhonrocks\u002F","\u003Cp>\u003Cstrong>CF7 Mate\u003C\u002Fstrong> (formerly CF7 Styler for Divi) is an all-in-one toolkit for Contact Form 7. Customize every aspect of your forms visually — no CSS needed — and unlock powerful features like form entries, star ratings, range sliders, and multi-step forms.\u003C\u002Fp>\n\u003Cp>Works with \u003Cstrong>Divi 4 & 5\u003C\u002Fstrong>, \u003Cstrong>Gutenberg\u003C\u002Fstrong>, \u003Cstrong>Elementor\u003C\u002Fstrong>, and \u003Cstrong>Bricks\u003C\u002Fstrong>.\u003C\u002Fp>\n\u003Ch4>Why CF7 Mate?\u003C\u002Fh4>\n\u003Cp>Contact Form 7 is powerful but ships with minimal styling. CF7 Mate bridges that gap by giving you full visual control over how your forms look and behave — directly inside the page builder you already use.\u003C\u002Fp>\n\u003Ch4>Free Features\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>\u003Cstrong>Visual Form Styling\u003C\u002Fstrong> — Customize colors, spacing, borders, and typography for every form element\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Multi-Builder Support\u003C\u002Fstrong> — Native modules for Divi (4 & 5), Gutenberg block, Elementor widget, and Bricks element\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Form Header\u003C\u002Fstrong> — Add titles, descriptions, icons, or images above your form\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Grid Layout\u003C\u002Fstrong> — Arrange fields in responsive multi-column grids\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Field Styling\u003C\u002Fstrong> — Control background, borders, focus states, height, and spacing\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Button Styling\u003C\u002Fstrong> — Customize text color, background, padding, border radius, and hover effects\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Label & Placeholder Styling\u003C\u002Fstrong> — Fine-tune label color, spacing, and placeholder appearance\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Radio & Checkbox Styling\u003C\u002Fstrong> — Custom sizes, colors, and border styles for radio buttons and checkboxes\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Validation Messages\u003C\u002Fstrong> — Style success, error, and field-level validation messages\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Responsive\u003C\u002Fstrong> — All styles adapt to desktop, tablet, and mobile screens\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Lightweight\u003C\u002Fstrong> — No bloat. Only loads assets on pages that use your forms\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Pro Features\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>\u003Cstrong>Form Entries\u003C\u002Fstrong> — Save every submission to your WordPress database and export to CSV\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Multi-Step Forms\u003C\u002Fstrong> — Build wizard-style forms with progress indicators and step navigation\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Multi-Column Layouts\u003C\u002Fstrong> — Advanced column arrangements with custom responsive breakpoints\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Star Rating Field\u003C\u002Fstrong> — Collect feedback and reviews with customizable star ratings\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Range Slider Field\u003C\u002Fstrong> — Let users pick values with an interactive slider\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Calculator Field\u003C\u002Fstrong> — Add calculated fields based on other form inputs\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Design Presets\u003C\u002Fstrong> — Save and reuse form styles across your site\u003C\u002Fli>\n\u003Cli>\u003Cstrong>AI Form Generator\u003C\u002Fstrong> — Generate complete CF7 forms from a text prompt\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Webhook Integration\u003C\u002Fstrong> — Send form data to external services on submission\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Heading, Separator, Icon & Image Fields\u003C\u002Fstrong> — Enhance your forms with visual elements\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fcf7mate.com\" rel=\"nofollow ugc\">Learn more about Pro features \u003Cspan aria-hidden=\"true\" class=\"wp-exclude-emoji\">→\u003C\u002Fspan>\u003C\u002Fa>\u003C\u002Fp>\n\u003Ch4>Builder Compatibility\u003C\u002Fh4>\n\u003Cp>CF7 Mate includes native integrations — not shortcode wrappers — for each builder:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>Divi 4\u003C\u002Fstrong> — Full Divi Builder module with visual controls\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Divi 5\u003C\u002Fstrong> — Purpose-built module for the new Divi 5 architecture\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Gutenberg\u003C\u002Fstrong> — Block editor block with live server-rendered preview\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Elementor\u003C\u002Fstrong> — Dedicated widget with Elementor-native controls\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Bricks\u003C\u002Fstrong> — Custom element for the Bricks Builder\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Developers\u003C\u002Fh4>\n\u003Cp>The free version source code is available on \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fplugpress-io\u002Fcf7-styler-for-divi\" rel=\"nofollow ugc\">GitHub\u003C\u002Fa>. Feel free to fork or build from source.\u003C\u002Fp>\n\u003Ch4>Who Is This For?\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Agencies building branded forms for clients\u003C\u002Fli>\n\u003Cli>Online stores that need styled order or inquiry forms\u003C\u002Fli>\n\u003Cli>Service businesses collecting leads through custom contact forms\u003C\u002Fli>\n\u003Cli>Anyone using Contact Form 7 who wants better-looking forms without writing CSS\u003C\u002Fli>\n\u003C\u002Ful>\n","Style and enhance Contact Form 7 for Divi, Bricks, Elementor, Gutenberg, and more.",30000,414209,76,44,"2026-02-22T14:18:00.000Z","6.0",[102,103,104,105,56],"bricks","cf7-styler","contact-form-7","divi","https:\u002F\u002Fcf7mate.com","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fcf7-styler-for-divi.3.0.3.zip",{"slug":109,"name":110,"version":111,"author":112,"author_profile":113,"description":114,"short_description":115,"active_installs":95,"downloaded":116,"rating":117,"num_ratings":118,"last_updated":119,"tested_up_to":120,"requires_at_least":121,"requires_php":122,"tags":123,"homepage":18,"download_link":128,"security_score":86,"vuln_count":27,"unpatched_count":27,"last_vuln_date":28,"fetched_at":29},"jetsticky-for-elementor","JetSticky For Elementor","1.0.4","jetmonsters","https:\u002F\u002Fprofiles.wordpress.org\u002Fjetmonsters\u002F","\u003Cp>JetSticky is the plugin which allows to make the sections and columns built with Elementor sticky, keeping them always within your sight when the page is scrolled up or down.\u003C\u002Fp>\n\u003Cp>The plugin is perfect for creating sticky headers and blocks, when you need them to be always seen.\u003C\u002Fp>\n\u003Ch4>Sticky Section Effect\u003C\u002Fh4>\n\u003Cp>To add a sticky section you’ll have to:\u003C\u002Fp>\n\u003Col>\n\u003Cli>Navigate to Elementor editor page;\u003C\u002Fli>\n\u003Cli>Click Edit Section option for one of the sections to which you want to apply Sticky effect;\u003C\u002Fli>\n\u003Cli>Open Advanced settings and here enable Sticky Section effect in Jet Sticky block.\u003C\u002Fli>\n\u003C\u002Fol>\n\u003Cp>After that you’ll have access to lots of style settings that provide opportunity to change the section’s appearance when one scrolls the page and the section moves as you scroll the content up or down.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Key Features for Sticky Section Effect:\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>Sticky Section Visibility\u003C\u002Fstrong> – allows to make the section sticky on desktop, tablet or mobile device, depending on your needs.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Z-index\u003C\u002Fstrong> – provides opportunity to add the depth to the content, making the section show always on top or behind some of the elements shown on the page.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Sticky Section Style\u003C\u002Fstrong> – includes multiple stylization settings for the sticky section, allowing to change the section’s padding values, background type, etc.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Transition Duration\u003C\u002Fstrong> – allows to change the time of the section’s transition.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Sticky Column Effect\u003C\u002Fh4>\n\u003Cp>To use the sticky effect for the column you need to:\u003C\u002Fp>\n\u003Col>\n\u003Cli>Navigate to Elementor editor page;\u003C\u002Fli>\n\u003Cli>Click Edit Column option for one of the columns to which you want to apply Sticky effect.\u003C\u002Fli>\n\u003Cli>Open Advanced settings and here enable Sticky Column effect.\u003C\u002Fli>\n\u003C\u002Fol>\n\u003Cp>After the effect is active you’ll be able to change top and bottom spacing values, choose to display the effect on desktops, tablets or mobile devices only.\u003C\u002Fp>\n","JetSticky is the plugin which allows to make the sections and columns built with Elementor sticky!",320061,74,18,"2023-08-24T07:53:00.000Z","6.3.8","4.7","5.4",[56,124,125,126,127],"sticky","sticky-column","sticky-header","sticky-section","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fjetsticky-for-elementor.1.0.4.zip",{"slug":130,"name":131,"version":132,"author":133,"author_profile":134,"description":135,"short_description":136,"active_installs":11,"downloaded":137,"rating":74,"num_ratings":138,"last_updated":139,"tested_up_to":16,"requires_at_least":140,"requires_php":18,"tags":141,"homepage":146,"download_link":147,"security_score":61,"vuln_count":62,"unpatched_count":27,"last_vuln_date":148,"fetched_at":29},"make-section-column-clickable-elementor","Make Section & Column Clickable For Elementor","2.4.1","Riyadh Ahmed","https:\u002F\u002Fprofiles.wordpress.org\u002Fsaju4wordpress\u002F","\u003Cp>A plugin that allows users to click in the whole column or section instead of individual elements\u003C\u002Fp>\n\u003Col>\n\u003Cli>Users will be able to click on the whole column when you add a link on that.\u003C\u002Fli>\n\u003Cli>Users will be able to click on the whole section when you add a link on that.\u003C\u002Fli>\n\u003C\u002Fol>\n\u003Cp>HOW TO USE IT\u003Cbr \u002F>\nAfter installing the plugin, open your Elementor editor, start editing a Column or Section, and under the Layout block (wrapper link option) you can add your custom link.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ca href=\"http:\u002F\u002Fsajuahmed.epizy.com\u002F\" rel=\"nofollow ugc\">Need Help?\u003C\u002Fa>       \u003C\u002Fli>\n\u003Cli>\u003Ca href=\"http:\u002F\u002Fsajuahmed.epizy.com\u002F\" rel=\"nofollow ugc\">About Author\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>You can make my day by submitting a positive review on \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fsupport\u002Fplugin\u002Fmake-section-column-clickable-elementor\u002Freviews\u002F\" rel=\"ugc\">\u003Cstrong>WordPress.org!\u003C\u002Fstrong>\u003C\u002Fa>\u003C\u002Fp>\n\u003Ch4>Contribute\u003C\u002Fh4>\n\u003Cp>This may have bugs and lack of many features. If you want to contribute on this project, you are more than welcome. Please fork the repository from \u003Ca href=\"https:\u002F\u002Fgithub.com\u002FRiyadh1734\u002FMake-Section-Column-Clickable-Elementor\" rel=\"nofollow ugc\">Github\u003C\u002Fa>.\u003C\u002Fp>\n\u003Ch3>Privacy Policy\u003C\u002Fh3>\n\u003Cp>Make Section & Column Clickable For Elementor uses \u003Ca href=\"https:\u002F\u002Fappsero.com\" rel=\"nofollow ugc\">Appsero\u003C\u002Fa> SDK to collect some telemetry data upon user’s confirmation. This helps us to troubleshoot problems faster & make product improvements.\u003C\u002Fp>\n\u003Cp>Appsero SDK \u003Cstrong>does not gather any data by default.\u003C\u002Fstrong> The SDK only starts gathering basic telemetry data \u003Cstrong>when a user allows it via the admin notice\u003C\u002Fstrong>. We collect the data to ensure a great user experience for all our users.\u003C\u002Fp>\n\u003Cp>Integrating Appsero SDK \u003Cstrong>DOES NOT IMMEDIATELY\u003C\u002Fstrong> start gathering data, \u003Cstrong>without confirmation from users in any case.\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Learn more about how \u003Ca href=\"https:\u002F\u002Fappsero.com\u002Fprivacy-policy\u002F\" rel=\"nofollow ugc\">Appsero collects and uses this data\u003C\u002Fa>.\u003C\u002Fp>\n","Make Section & Column Clickable For Elementor is a WordPress plugin to clickable your elementor column & section in your WordPress website.",119772,11,"2026-01-15T06:04:00.000Z","5.2",[142,143,144,145],"column-clickable","elementor-column","elementor-section","section-clickable","https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fmake-section-column-clickable-elementor","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fmake-section-column-clickable-elementor.2.4.1.zip","2025-12-07 00:00:00",{"attackSurface":150,"codeSignals":176,"taintFlows":193,"riskAssessment":194,"analyzedAt":204},{"hooks":151,"ajaxHandlers":172,"restRoutes":173,"shortcodes":174,"cronEvents":175,"entryPointCount":27,"unprotectedCount":27},[152,158,161,163,166,169],{"type":153,"name":154,"callback":155,"file":156,"line":157},"action","plugins_loaded","anonymous","includes\\class-equal-height-columns.php",135,{"type":153,"name":159,"callback":155,"file":156,"line":160},"admin_enqueue_scripts",150,{"type":153,"name":159,"callback":155,"file":156,"line":162},151,{"type":153,"name":164,"callback":155,"file":156,"line":165},"admin_menu",152,{"type":153,"name":167,"callback":155,"file":156,"line":168},"admin_init",153,{"type":153,"name":170,"callback":155,"file":156,"line":171},"wp_enqueue_scripts",168,[],[],[],[],{"dangerousFunctions":177,"sqlUsage":178,"outputEscaping":180,"fileOperations":27,"externalRequests":27,"nonceChecks":27,"capabilityChecks":27,"bundledLibraries":192},[],{"prepared":27,"raw":27,"locations":179},[],{"escaped":181,"rawEcho":33,"locations":182},3,[183,187,188,190],{"file":184,"line":185,"context":186},"admin\\class-equal-height-columns-admin.php",129,"raw output",{"file":184,"line":162,"context":186},{"file":184,"line":189,"context":186},203,{"file":184,"line":191,"context":186},208,[],[],{"summary":195,"deductions":196},"The \"equal-height-columns\" v1.2.1 plugin exhibits a generally good security posture based on the provided static analysis.  There are no identified AJAX handlers, REST API routes, shortcodes, or cron events, resulting in a zero attack surface, which significantly mitigates the risk of common web vulnerabilities. Furthermore, the code demonstrates responsible practices with SQL queries exclusively using prepared statements and no file operations or external HTTP requests, indicating careful development in these sensitive areas.\n\nHowever, a notable concern arises from the output escaping analysis, where only 43% of outputs are properly escaped. This indicates a potential for cross-site scripting (XSS) vulnerabilities if user-supplied or dynamic data is outputted without adequate sanitization.  The lack of nonce and capability checks, while not immediately exploitable due to the absence of entry points, suggests a potential for future issues if new features are added that introduce them. The plugin's vulnerability history is clean, showing no past CVEs, which is a positive indicator of development quality. Overall, while the plugin is currently very secure due to its limited attack surface and clean history, the incomplete output escaping is a significant weakness that requires attention to prevent potential XSS attacks.",[197,200,202],{"reason":198,"points":199},"Insufficient output escaping",8,{"reason":201,"points":181},"Missing nonce checks",{"reason":203,"points":181},"Missing capability checks","2026-03-16T17:43:59.168Z",{"wat":206,"direct":219},{"assetPaths":207,"generatorPatterns":212,"scriptPaths":213,"versionParams":214},[208,209,210,211],"\u002Fwp-content\u002Fplugins\u002Fequal-height-columns\u002Fcss\u002Fequal-height-columns-admin.css","\u002Fwp-content\u002Fplugins\u002Fequal-height-columns\u002Fjs\u002Fequal-height-columns-admin.js","\u002Fwp-content\u002Fplugins\u002Fequal-height-columns\u002Fcss\u002Fequal-height-columns.css","\u002Fwp-content\u002Fplugins\u002Fequal-height-columns\u002Fjs\u002Fequal-height-columns.js",[],[209,211],[215,216,217,218],"\u002Fequal-height-columns-admin.css?ver=","\u002Fequal-height-columns-admin.js?ver=","\u002Fequal-height-columns.css?ver=","\u002Fequal-height-columns.js?ver=",{"cssClasses":220,"htmlComments":222,"htmlAttributes":240,"restEndpoints":242,"jsGlobals":243,"shortcodeOutput":245},[221],"mm-settings",[223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239],"\u003C!-- Equal Height Columns -->","\u003C!-- The code that runs during plugin activation. -->","\u003C!-- The code that runs during plugin deactivation. -->","\u003C!-- The core plugin class that is used to define internationalization, -->","\u003C!-- dashboard-specific hooks, and public-facing site hooks. -->","\u003C!-- Begins execution of the plugin. -->","\u003C!-- The dashboard-specific functionality of the plugin. -->","\u003C!-- The ID of this plugin. -->","\u003C!-- The display name of this plugin. -->","\u003C!-- The version of this plugin. -->","\u003C!-- Options for this plugin. -->","\u003C!-- Slug for main options group. -->","\u003C!-- Register the stylesheets for the Dashboard. -->","\u003C!-- Register the JavaScript for the dashboard. -->","\u003C!-- Add options page to admin menu. -->","\u003C!-- Output the contents of the options page. -->","\u003C!-- Form MIGHTYminnow link with plugin name for tracking -->",[241],"data-plugin-slug",[],[244],"equal_height_columns_params",[246,247],"[equal_height_columns]","[\u002Fequal_height_columns]"]