[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fAoYBcEU1RD9mnCyFKOaD14F72FxdiPECMNXjgEfngBc":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},"w3dev","https:\u002F\u002Fprofiles.wordpress.org\u002Fw3dev\u002F",3,1270,87,30,85,"2026-04-03T23:17:32.205Z",[13,38,56],{"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":10,"vuln_count":35,"unpatched_count":35,"last_vuln_date":36,"fetched_at":37},"w3dev-fancybox","fancyBox 3 for WordPress","1.2.4","\u003Cp>Seamlessly integrates the fancyBox 3 script into your WordPress installation: Upload, activate, and you’re done. Additional configuration is optional.\u003C\u002Fp>\n\u003Cp>You can easily customize almost anything you can think about fancyBox lightbox. By default, the plugin will use jQuery to apply fancyBox to ANY thumbnails that link directly to an image. It will also automatically convert WordPress image galleries into fancyBox galleries.\u003C\u002Fp>\n\u003Cp>For Inline content linking\u003Cbr \u002F>\n– Create a link to any hidden or visible div with an ID attribate, and the plugin will transform the link and enable it for fancyBox usage.\u003Cbr \u002F>\n– Note: this may cause a conflict if your page or website is using a smooth scrolling function to jump between page sections!\u003C\u002Fp>\n\u003Cp>In upcoming versions, additional functionality for ajax calls and iframe data will be implemented.\u003C\u002Fp>\n","Seamlessly integrates the fancyBox 3 script into your WordPress installation: Upload, activate, and you're done. Additional configuration is opti &hellip;",1000,15612,98,7,"2023-11-06T22:53:00.000Z","6.3.8","3.4","",[28,29,30,31,32],"fancybox","fancybox-3","gallery","jquery","lightbox","https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fw3dev-fancybox\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fw3dev-fancybox.zip",0,null,"2026-03-15T15:16:48.613Z",{"slug":39,"name":40,"version":41,"author":4,"author_profile":5,"description":42,"short_description":43,"active_installs":44,"downloaded":45,"rating":35,"num_ratings":35,"last_updated":46,"tested_up_to":24,"requires_at_least":47,"requires_php":48,"tags":49,"homepage":26,"download_link":55,"security_score":10,"vuln_count":35,"unpatched_count":35,"last_vuln_date":36,"fetched_at":37},"widget-dashboard-for-elementor","Widget Dashboard for Elementor","1.0.2","\u003Cp>Our dashboard will help you understand and track what Elementor widgets are being used (and where!). This can be very useful to determine which elements are needed, and which aren’t, when trying to optimize performance across your WordPress website.\u003C\u002Fp>\n","Our dashboard will help you understand and track what Elementor widgets are being used (and where!). This can be very useful to determine which elemen &hellip;",200,5794,"2023-11-06T22:33:00.000Z","4.7","7.4",[50,51,52,53,54],"dashboard","elementor","elements","widget","widgets","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fwidget-dashboard-for-elementor.1.0.2.zip",{"slug":57,"name":58,"version":59,"author":4,"author_profile":5,"description":60,"short_description":61,"active_installs":62,"downloaded":63,"rating":64,"num_ratings":65,"last_updated":66,"tested_up_to":67,"requires_at_least":68,"requires_php":48,"tags":69,"homepage":26,"download_link":73,"security_score":74,"vuln_count":35,"unpatched_count":35,"last_vuln_date":36,"fetched_at":37},"fundamento","Fundamento","1.1.10","\u003Cp>Have you ever wanted to alter the way Elementor renders one of its widgets on your website?\u003C\u002Fp>\n\u003Cp>Fundamento provides an easier way to achieve this by allowing you to inject extra CSS classes into Elementor’s widgets.\u003C\u002Fp>\n\u003Ch3>Usage\u003C\u002Fh3>\n\u003Cp>Tell Elementor that you have a new skin available by utilizing the following code in your \u003Ccode>functions.php\u003C\u002Fcode> file:\u003C\u002Fp>\n\u003Col>\n\u003Cli>\n\u003Cp>Add an action to initialize Fundamento, then add a call to Fundamento’s \u003Ccode>register_skin()\u003C\u002Fcode> function:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>if(is_plugin_active('fundamento\u002Ffundamento.php')) {\n    function fundamento_init() {\n        \u002F\u002F create a new Fundamento instance\n        $f = \\Fundamento\\Plugin::instance(); \n\n        \u002F\u002F register a new skin\n        $f->register_skin([\n            'name'       => 'Red',                                                      \u002F\u002F The name of your new skin, as it will appear in Elementor\n            'element'    => 'button',                                                      \u002F\u002F The elementor element you are skinning\n            'is_default' => true,                                                          \u002F\u002F optional - should this skin be set by default on all elements of this type\n            'css'        => get_stylesheet_directory_uri() . '\u002Fskins\u002Fbutton\u002Fred.css',   \u002F\u002F optional - have Fundamento enqueue an extra css file\n            'js'         => get_stylesheet_directory_uri() . '\u002Fskins\u002Fbutton\u002Fred.js',    \u002F\u002F optional - have Fundamento enqueue an extra js file\n        ]);\n    }\n    add_action('elementor\u002Finit', 'fundamento_init');\n}\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Add the selector to your css file:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F* Class will always be .skin-{element}-{name} *\u002F\n\u002F* Name is transformed to lowercase and spaces are replaced with \"-\" *\u002F\n.skin-button-red {\n    background: #f00;\n}\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003C\u002Fli>\n\u003C\u002Fol>\n\u003Cp>Tell Elementor that you have a new padding preset by utilizing the following code in your \u003Ccode>functions.php\u003C\u002Fcode> file:\u003C\u002Fp>\n\u003Col>\n\u003Cli>\n\u003Cp>Add an action to initialize Fundamento, then add a call to Fundamento’s \u003Ccode>register_padding()\u003C\u002Fcode> function:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>if(is_plugin_active('fundamento\u002Ffundamento.php')) {\n    function fundamento_init() {\n        \u002F\u002F create a new Fundamento instance\n        $f = \\Fundamento\\Plugin::instance(); \n\n        \u002F\u002F register a new skin\n        $f->register_padding([\n            'name'       => 'Standard',                                                    \u002F\u002F The name of your padding preset, as it will appear in Elementor\n            'element'    => 'section',                                                     \u002F\u002F The elementor element you are skinning\n            'padding'    => '30px',                                                        \u002F\u002F The value and unit of the amount of padding this preset should apply\n            'is_default' => true,                                                          \u002F\u002F optional - should this skin be set by default on all elements of this type\n        ]);\n    }\n    add_action('elementor\u002Finit', 'fundamento_init');\n}\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003C\u002Fli>\n\u003C\u002Fol>\n","Fundamento creates the ability to easily add custom skins and padding-presets into your Elementor-based Wordpress website.",70,8859,100,2,"2024-10-28T11:41:00.000Z","6.7.5","5.2",[51,70,71,72],"globals","skin","template","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ffundamento.zip",92]