{"id":116727,"date":"2020-02-04T06:09:44","date_gmt":"2020-02-04T06:09:44","guid":{"rendered":"https:\/\/wordpress.org\/plugins\/beaver-kit\/"},"modified":"2026-09-22T06:33:40","modified_gmt":"2026-09-22T06:33:40","slug":"modules-kit","status":"publish","type":"plugin","link":"https:\/\/fi.wordpress.org\/plugins\/modules-kit\/","author":16202600,"comment_status":"closed","ping_status":"closed","template":"","meta":{"version":"2.0","stable_tag":"2.0","tested":"7.1.1","requires":"4.8","requires_php":"8.0","requires_plugins":null,"header_name":"Modules Kit - Beaver Builder Modules","header_author":"Techeshta","header_description":"Beaver Kit is a bunch of additional beaver builder blocks for Editors, Content Writers and freelancers (to provide all possible options).","assets_banners_color":"f3d8b2","last_updated":"2026-09-22 06:33:40","external_support_url":"","external_repository_url":"","donate_link":"https:\/\/www.paypal.me\/techeshta\/","header_plugin_uri":"https:\/\/wordpress.org\/plugins\/modules-kit\/","header_author_uri":"https:\/\/www.techeshta.com","rating":5,"author_block_rating":0,"active_installs":60,"downloads":5133,"num_ratings":3,"support_threads":0,"support_threads_resolved":0,"author_block_count":0,"sections":["description","installation","faq","changelog"],"tags":{"1.2.0":{"tag":"1.2.0","author":"techeshta","date":"2026-08-22 07:34:05","revision":3660145},"1.2.1":{"tag":"1.2.1","author":"techeshta","date":"2026-09-02 11:02:38","revision":3677826},"2.0":{"tag":"2.0","author":"techeshta","date":"2026-09-22 06:33:40","revision":3706707}},"upgrade_notice":[],"ratings":{"1":0,"2":0,"3":0,"4":0,"5":"3"},"assets_icons":{"icon-128x128.png":{"filename":"icon-128x128.png","revision":2238083,"resolution":"128x128","location":"assets","locale":"","width":128,"height":128},"icon-256x256.png":{"filename":"icon-256x256.png","revision":2238083,"resolution":"256x256","location":"assets","locale":"","width":256,"height":256}},"assets_banners":{"banner-1544X500.png":{"filename":"banner-1544X500.png","revision":2238083,"resolution":"1544x500","location":"assets","locale":"","width":1544,"height":500},"banner-772x250.png":{"filename":"banner-772x250.png","revision":2238083,"resolution":"772x250","location":"assets","locale":"","width":772,"height":250}},"assets_blueprints":{"blueprint.json":{"filename":"blueprint.json","revision":3706707,"resolution":false,"location":"assets","locale":"","contents":"{\"$schema\":\"https:\\\/\\\/playground.wordpress.net\\\/blueprint-schema.json\",\"landingPage\":\"\\\/wp-admin\\\/edit.php?post_type=page\",\"preferredVersions\":{\"php\":\"8.3\",\"wp\":\"latest\"},\"features\":{\"networking\":true},\"login\":true,\"steps\":[{\"step\":\"installPlugin\",\"pluginData\":{\"resource\":\"wordpress.org\\\/plugins\",\"slug\":\"beaver-builder-lite-version\"},\"options\":{\"activate\":true}},{\"step\":\"installPlugin\",\"pluginData\":{\"resource\":\"wordpress.org\\\/plugins\",\"slug\":\"modules-kit\"},\"options\":{\"activate\":true}},{\"step\":\"runPHP\",\"code\":\"<?php\\nrequire_once '\\\/wordpress\\\/wp-load.php';\\nrequire_once ABSPATH . 'wp-admin\\\/includes\\\/image.php';\\n\\n$placeholder_source = MKBB_DIR . 'assets\\\/images\\\/default.png';\\n$upload_dir          = wp_upload_dir();\\n\\nfunction mkbb_demo_attachment( $source, $upload_dir, $title, $index ) {\\n\\t$filename    = 'modules-kit-sample-' . $index . '.png';\\n\\t$destination = trailingslashit( $upload_dir['path'] ) . $filename;\\n\\n\\tif ( ! copy( $source, $destination ) ) {\\n\\t\\treturn 0;\\n\\t}\\n\\n\\t$attachment_id = wp_insert_attachment(\\n\\t\\tarray(\\n\\t\\t\\t'post_mime_type' => 'image\\\/png',\\n\\t\\t\\t'post_title'     => $title,\\n\\t\\t\\t'post_status'    => 'inherit',\\n\\t\\t),\\n\\t\\t$destination\\n\\t);\\n\\n\\tif ( is_wp_error( $attachment_id ) ) {\\n\\t\\treturn 0;\\n\\t}\\n\\n\\t$attachment_data = wp_generate_attachment_metadata( $attachment_id, $destination );\\n\\twp_update_attachment_metadata( $attachment_id, $attachment_data );\\n\\n\\treturn $attachment_id;\\n}\\n\\n$sample_images = array(\\n\\t'testimonial' => mkbb_demo_attachment( $placeholder_source, $upload_dir, 'Testimonial Photo', 1 ),\\n\\t'team_1'      => mkbb_demo_attachment( $placeholder_source, $upload_dir, 'Alkesh Miyani', 2 ),\\n\\t'team_2'      => mkbb_demo_attachment( $placeholder_source, $upload_dir, 'Vastar Para', 3 ),\\n\\t'team_3'      => mkbb_demo_attachment( $placeholder_source, $upload_dir, 'Hadi Hirpara', 4 ),\\n\\t'infobox'     => mkbb_demo_attachment( $placeholder_source, $upload_dir, 'Infobox Photo', 5 ),\\n\\t'flipbox'     => mkbb_demo_attachment( $placeholder_source, $upload_dir, 'Flipbox Photo', 6 ),\\n);\\n\\n\\\/\\\/ The photo field's \\\"{field}_src\\\" companion is only populated by the admin\\n\\\/\\\/ media picker at save time, never derived automatically from the ID, so we\\n\\\/\\\/ have to resolve and pass the URL alongside the attachment ID ourselves.\\n$sample_image_urls = array();\\nforeach ( $sample_images as $key => $attachment_id ) {\\n\\t$sample_image_urls[ $key ] = $attachment_id ? wp_get_attachment_url( $attachment_id ) : '';\\n}\\n\\n$page_id = wp_insert_post(\\n\\tarray(\\n\\t\\t'post_title'  => 'Modules Kit Demo',\\n\\t\\t'post_status' => 'publish',\\n\\t\\t'post_type'   => 'page',\\n\\t),\\n\\ttrue\\n);\\n\\nif ( is_wp_error( $page_id ) ) {\\n\\tthrow new RuntimeException( $page_id->get_error_message() );\\n}\\n\\nglobal $post;\\n$post = get_post( $page_id );\\nsetup_postdata( $post );\\n\\nFLBuilderModel::set_post_id( $page_id );\\nFLBuilderModel::enable();\\n\\nfunction mkbb_demo_row( $cols_type ) {\\n\\t$row = FLBuilderModel::add_row( $cols_type );\\n\\n\\t\\\/\\\/ Stretch the row edge-to-edge instead of the default fixed\\\/boxed width.\\n\\t$data                                = FLBuilderModel::get_layout_data();\\n\\t$data[ $row->node ]->settings->width         = 'full';\\n\\t$data[ $row->node ]->settings->content_width = 'full';\\n\\tFLBuilderModel::update_layout_data( $data );\\n\\n\\t$group = current( FLBuilderModel::get_nodes( 'column-group', $row->node ) );\\n\\treturn array_values( FLBuilderModel::get_nodes( 'column', $group->node ) );\\n}\\n\\nfunction mkbb_demo_module( $type, $fields, $parent_id ) {\\n\\t$settings = new stdClass();\\n\\tforeach ( $fields as $key => $value ) {\\n\\t\\t$settings->$key = $value;\\n\\t}\\n\\tFLBuilderModel::add_module( $type, $settings, $parent_id );\\n}\\n\\n\\\/\\\/ Page heading.\\n$cols = mkbb_demo_row( '1-col' );\\nmkbb_demo_module( 'heading', array(\\n\\t'heading' => 'Modules Kit - Beaver Builder Modules',\\n\\t'tag'     => 'h1',\\n), $cols[0]->node );\\n\\n\\\/\\\/ Call to Action.\\n$cols = mkbb_demo_row( '1-col' );\\nmkbb_demo_module( 'heading', array(\\n\\t'heading' => 'Call to Action',\\n\\t'tag'     => 'h2',\\n), $cols[0]->node );\\n$cols = mkbb_demo_row( '1-col' );\\nmkbb_demo_module( 'mkbb-call-to-action', array(\\n\\t'mkbb_title'       => 'Ready to Get Started?',\\n\\t'mkbb_description' => 'Modules Kit adds nine flexible Beaver Builder modules for editors, writers, and freelancers.',\\n\\t'mkbb_button_text' => 'Get Started',\\n), $cols[0]->node );\\n\\n\\\/\\\/ Infobox + Progress Bar.\\n$cols = mkbb_demo_row( '2-cols' );\\nmkbb_demo_module( 'heading', array(\\n\\t'heading' => 'Infobox',\\n\\t'tag'     => 'h2',\\n), $cols[0]->node );\\nmkbb_demo_module( 'mkbb-infobox', array(\\n\\t'mkbb_title'            => 'Fast Performance',\\n\\t'mkbb_description'      => 'Lightweight modules built for speed and reliability.',\\n\\t'mkbb_select_image'     => $sample_images['infobox'],\\n\\t'mkbb_select_image_src' => $sample_image_urls['infobox'],\\n), $cols[0]->node );\\nmkbb_demo_module( 'heading', array(\\n\\t'heading' => 'Progress Bar',\\n\\t'tag'     => 'h2',\\n), $cols[1]->node );\\nmkbb_demo_module( 'mkbb-progress-bar', array(\\n\\t'mkbb_title_pb'      => 'Beaver Builder Skills',\\n\\t'mkbb_inner_text_pb' => 'Expert',\\n\\t'mkbb_percentage_pb' => '90',\\n), $cols[1]->node );\\n\\n\\\/\\\/ Our Team.\\n$cols = mkbb_demo_row( '1-col' );\\nmkbb_demo_module( 'heading', array(\\n\\t'heading' => 'Our Team',\\n\\t'tag'     => 'h2',\\n), $cols[0]->node );\\n$cols = mkbb_demo_row( '3-cols' );\\nmkbb_demo_module( 'mkbb-our-team', array(\\n\\t'mkbb_name_ot'             => 'Alkesh Miyani',\\n\\t'mkbb_designation_ot'      => 'Founder',\\n\\t'mkbb_select_image_ot'     => $sample_images['team_1'],\\n\\t'mkbb_select_image_ot_src' => $sample_image_urls['team_1'],\\n), $cols[0]->node );\\nmkbb_demo_module( 'mkbb-our-team', array(\\n\\t'mkbb_name_ot'             => 'Vastar Para',\\n\\t'mkbb_designation_ot'      => 'Lead Developer',\\n\\t'mkbb_select_image_ot'     => $sample_images['team_2'],\\n\\t'mkbb_select_image_ot_src' => $sample_image_urls['team_2'],\\n), $cols[1]->node );\\nmkbb_demo_module( 'mkbb-our-team', array(\\n\\t'mkbb_name_ot'             => 'Hadi Hirpara',\\n\\t'mkbb_designation_ot'      => 'Designer',\\n\\t'mkbb_select_image_ot'     => $sample_images['team_3'],\\n\\t'mkbb_select_image_ot_src' => $sample_image_urls['team_3'],\\n), $cols[2]->node );\\n\\n\\\/\\\/ Testimonial + Pull Quotes.\\n$cols = mkbb_demo_row( '2-cols' );\\nmkbb_demo_module( 'heading', array(\\n\\t'heading' => 'Testimonial',\\n\\t'tag'     => 'h2',\\n), $cols[0]->node );\\nmkbb_demo_module( 'mkbb-testimonial', array(\\n\\t'mkbb_content'          => 'Modules Kit made it so easy to build beautiful pages without writing a single line of code.',\\n\\t'mkbb_name'             => 'Sarah Johnson',\\n\\t'mkbb_designation'      => 'Marketing Manager',\\n\\t'mkbb_select_image'     => $sample_images['testimonial'],\\n\\t'mkbb_select_image_src' => $sample_image_urls['testimonial'],\\n), $cols[0]->node );\\nmkbb_demo_module( 'heading', array(\\n\\t'heading' => 'Pull Quotes',\\n\\t'tag'     => 'h2',\\n), $cols[1]->node );\\nmkbb_demo_module( 'mkbb-pull-quotes', array(\\n\\t'mkbb_content_pq' => 'Great design is not just what it looks like. Great design is how it works.',\\n\\t'mkbb_name_pq'     => 'Modules Kit Team',\\n), $cols[1]->node );\\n\\n\\\/\\\/ Dual Button.\\n$cols = mkbb_demo_row( '1-col' );\\nmkbb_demo_module( 'heading', array(\\n\\t'heading' => 'Dual Button',\\n\\t'tag'     => 'h2',\\n), $cols[0]->node );\\n$cols = mkbb_demo_row( '1-col' );\\nmkbb_demo_module( 'mkbb-dual-button', array(\\n\\t'mkbb_button_text'    => 'Get Started',\\n\\t'mkbb_button_text_2'  => 'Learn More',\\n\\t'mkbb_connector_text' => 'or',\\n), $cols[0]->node );\\n\\n\\\/\\\/ Flipbox.\\n$cols = mkbb_demo_row( '1-col' );\\nmkbb_demo_module( 'heading', array(\\n\\t'heading' => 'Flipbox',\\n\\t'tag'     => 'h2',\\n), $cols[0]->node );\\n$cols = mkbb_demo_row( '1-col' );\\nmkbb_demo_module( 'mkbb-flipbox', array(\\n\\t'mkbb_front_title_flpb'       => 'Hover to Flip',\\n\\t'mkbb_front_description_flpb' => 'This box flips to reveal more content.',\\n\\t'mkbb_back_title_flpb'        => 'Surprise!',\\n\\t'mkbb_back_description_flpb'  => 'Here is the content on the back of the box.',\\n\\t'mkbb_graphic_element_flpb'   => 'image',\\n\\t'mkbb_imagefield_flpb'        => $sample_images['flipbox'],\\n\\t'mkbb_imagefield_flpb_src'    => $sample_image_urls['flipbox'],\\n), $cols[0]->node );\\n\\n\\\/\\\/ Pricing Table.\\n$cols = mkbb_demo_row( '1-col' );\\nmkbb_demo_module( 'heading', array(\\n\\t'heading' => 'Pricing Table',\\n\\t'tag'     => 'h2',\\n), $cols[0]->node );\\n$cols = mkbb_demo_row( '1-col' );\\nmkbb_demo_module( 'mkbb-pricing-table', array(\\n\\t'mkbb_title_pt'       => 'Basic',\\n\\t'mkbb_description_pt' => 'For individuals getting started.',\\n\\t'mkbb_price_pt'       => '29',\\n\\t'mkbb_button_text_pt' => 'Buy Now',\\n), $cols[0]->node );\\n\\nFLBuilderModel::delete_all_asset_cache( $page_id );\\nFLBuilderModel::reset_post_id();\\nwp_reset_postdata();\"}]}"}},"all_blocks":[],"tagged_versions":["1.2.0","1.2.1","2.0"],"block_files":[],"assets_screenshots":{"screenshot-1.png":{"filename":"screenshot-1.png","revision":2238083,"resolution":"1","location":"assets","locale":"","width":721,"height":718},"screenshot-2.png":{"filename":"screenshot-2.png","revision":2238083,"resolution":"2","location":"assets","locale":"","width":753,"height":554},"screenshot-3.png":{"filename":"screenshot-3.png","revision":2238083,"resolution":"3","location":"assets","locale":"","width":558,"height":642},"screenshot-4.png":{"filename":"screenshot-4.png","revision":2238083,"resolution":"4","location":"assets","locale":"","width":751,"height":625},"screenshot-5.png":{"filename":"screenshot-5.png","revision":2238083,"resolution":"5","location":"assets","locale":"","width":878,"height":611},"screenshot-6.png":{"filename":"screenshot-6.png","revision":2445524,"resolution":"6","location":"assets","locale":"","width":1430,"height":460},"screenshot-7.png":{"filename":"screenshot-7.png","revision":2445524,"resolution":"7","location":"assets","locale":"","width":1188,"height":482},"screenshot-8.png":{"filename":"screenshot-8.png","revision":2445524,"resolution":"8","location":"assets","locale":"","width":731,"height":680},"screenshot-9.png":{"filename":"screenshot-9.png","revision":2445524,"resolution":"9","location":"assets","locale":"","width":773,"height":689}},"screenshots":{"1":"Call to action: Showcase call to action to get your leads","2":"Infobox: Showcase your services and information about your business","3":"Our Team: Showcase your team members and their information","4":"Pull Quotes: Showcase your details with quotes","5":"Testimonial: Showcase your testimonials with client names","6":"Progress bar: Showcase your skills","7":"Dual button: Design your own buttons or click-to-actions","8":"Flipbox: Showcase your services","9":"Pricing table: Showcase your pricing plans"}},"plugin_section":[],"plugin_tags":[11515,77390,72550,181505,1084],"plugin_category":[],"plugin_contributors":[133258,161569,167400],"plugin_business_model":[],"class_list":["post-116727","plugin","type-plugin","status-publish","hentry","plugin_tags-beaver-builder","plugin_tags-beaver-builder-addon","plugin_tags-beaver-builder-modules","plugin_tags-modules-kit","plugin_tags-page-builder","plugin_contributors-alkesh7","plugin_contributors-techeshta","plugin_contributors-vastarpara","plugin_committers-techeshta"],"banners":{"banner":"https:\/\/ps.w.org\/modules-kit\/assets\/banner-772x250.png?rev=2238083","banner_2x":"https:\/\/ps.w.org\/modules-kit\/assets\/banner-1544X500.png?rev=2238083","banner_rtl":false,"banner_2x_rtl":false},"icons":{"svg":false,"icon":"https:\/\/ps.w.org\/modules-kit\/assets\/icon-128x128.png?rev=2238083","icon_2x":"https:\/\/ps.w.org\/modules-kit\/assets\/icon-256x256.png?rev=2238083","generated":false},"screenshots":[{"src":"https:\/\/ps.w.org\/modules-kit\/assets\/screenshot-1.png?rev=2238083","caption":"Call to action: Showcase call to action to get your leads"},{"src":"https:\/\/ps.w.org\/modules-kit\/assets\/screenshot-2.png?rev=2238083","caption":"Infobox: Showcase your services and information about your business"},{"src":"https:\/\/ps.w.org\/modules-kit\/assets\/screenshot-3.png?rev=2238083","caption":"Our Team: Showcase your team members and their information"},{"src":"https:\/\/ps.w.org\/modules-kit\/assets\/screenshot-4.png?rev=2238083","caption":"Pull Quotes: Showcase your details with quotes"},{"src":"https:\/\/ps.w.org\/modules-kit\/assets\/screenshot-5.png?rev=2238083","caption":"Testimonial: Showcase your testimonials with client names"},{"src":"https:\/\/ps.w.org\/modules-kit\/assets\/screenshot-6.png?rev=2445524","caption":"Progress bar: Showcase your skills"},{"src":"https:\/\/ps.w.org\/modules-kit\/assets\/screenshot-7.png?rev=2445524","caption":"Dual button: Design your own buttons or click-to-actions"},{"src":"https:\/\/ps.w.org\/modules-kit\/assets\/screenshot-8.png?rev=2445524","caption":"Flipbox: Showcase your services"},{"src":"https:\/\/ps.w.org\/modules-kit\/assets\/screenshot-9.png?rev=2445524","caption":"Pricing table: Showcase your pricing plans"}],"raw_content":"<!--section=description-->\n<p>Modules Kit - Beaver Builder Modules is a powerful collection of Beaver Builder Modules with unlimited possibilities to design a webpage. You can build professional, elegant websites using Beaver Builder with great ease and without any code. It is a large variety of beautiful Beaver Builder Modules that can develop and design your best web pages with just a few clicks.<\/p>\n\n<p><strong><a href=\"https:\/\/www.techeshta.com\/docs\/modules-kit\/?utm_medium=wp.org&amp;utm_source=wordpressorg&amp;utm_campaign=readme&amp;utm_content=techeshta\">Documentation<\/a><\/strong><\/p>\n\n<p>Modules Kit - Beaver Builder Modules is a bunch of additional modules for Editors, Content Writers, and Freelancers to provide all possible options using the Beaver Builder page builder.<\/p>\n\n<h3>Where is Modules Kit Plugin Useful?<\/h3>\n\n<p>Below is one small list for which purposes you can use the Modules Kit.<\/p>\n\n<ul>\n<li>Modules for Editors<\/li>\n<li>Modules for Content Writers<\/li>\n<li>Modules for Freelancers<\/li>\n<li>Modules for Designer<\/li>\n<li>Modules for Developer<\/li>\n<\/ul>\n\n<h3>Why Choose a Modules Kit for your Beaver Builder Project?<\/h3>\n\n<p>We carefully researched over minimum requirements of any website development. And then created a list of options over the selected modules that we are thinking of designing and provide it as free, and you can see the result here.<\/p>\n\n<p>We offered all possible opportunities with all Beaver Builder modules. So, from beginner to freelance \u2013 designer, developer, writer, and content creator can create awesome stuff with the new Beaver Builder editor. We have 5+ Beaver Builder Modules available as a start.<\/p>\n\n<h3>Features of Modules Kit<\/h3>\n\n<ul>\n<li>Designed for Editors, Content Writers and Freelancers<\/li>\n<li>Highly Optimized and Performance Focused Beaver Builder Modules<\/li>\n<li>Extensive Attributes for Each Module in Modules Kit<\/li>\n<li>Faster Designing Experience with  Beaver Builder<\/li>\n<li>Seamless Interplay with the Core Beaver Builder Modules<\/li>\n<li>Cross-browser Compatibility<\/li>\n<li>No Coding Skill Needed<\/li>\n<\/ul>\n\n<h3>List of Beaver Builder Modules<\/h3>\n\n<p>Get 5+ flexible Beaver Builder Modules that are feature-rich and look right out of the box, and provide a robust foundation for any website even without a single line of code.<\/p>\n\n<ul>\n<li>Call to action<\/li>\n<li>Infobox<\/li>\n<li>Our Team<\/li>\n<li>Pull Quotes<\/li>\n<li>Testimonial<\/li>\n<li>Progress Bar<\/li>\n<li>Dual Button<\/li>\n<li>Flipbox<\/li>\n<li>Pricing Table<\/li>\n<\/ul>\n\n<h3>Technical Support<\/h3>\n\n<p>We're active for any support issues and feature suggestions. So, I hope you will love it. If you have any more questions, visit our support on the <a href=\"https:\/\/wordpress.org\/support\/plugin\/modules-kit\/\">Plugin's Forum<\/a>. Feel free to <a href=\"https:\/\/www.techeshta.com\/contact-us\/?utm_medium=wp.org&amp;utm_source=wordpressorg&amp;utm_campaign=readme&amp;utm_content=techeshta\">contact us<\/a> if you want any custom widgets for your site.<\/p>\n\n<h3>Like Modules Kit Plugin?<\/h3>\n\n<p>Don't forget to rate us on <a href=\"https:\/\/wordpress.org\/support\/plugin\/modules-kit\/reviews\/?filter=5\">WordPress<\/a>.<\/p>\n\n<!--section=installation-->\n<p><strong>From Your WordPress Dashboard<\/strong><\/p>\n\n<ol>\n<li>Go to Plugins &gt;<strong>Add New<\/strong><\/li>\n<li>Search for <strong>Modules Kit \u2013 Beaver Builder Modules<\/strong><\/li>\n<li>Click on <strong>Install Now<\/strong> Button<\/li>\n<li>Click on <strong>Activate Now<\/strong> After Installed in the Backend<\/li>\n<\/ol>\n\n<p><strong>From WordPress.org<\/strong><\/p>\n\n<ol>\n<li>Download <strong><a href=\"https:\/\/downloads.wordpress.org\/plugin\/modules-kit.zip\">Modules Kit \u2013 Beaver Builder Modules<\/a><\/strong><\/li>\n<li>Upload the <strong>'modules-kit\u2019<\/strong> folder to the \/wp-content\/plugins\/ directory<\/li>\n<li>Activate <strong>Modules Kit<\/strong> plugin from your plugins page<\/li>\n<\/ol>\n\n<!--section=faq-->\n<dl>\n<dt id=\"how%20do%20i%20start%20using%20modules%20kit%3F\"><h3>How do I start using Modules Kit?<\/h3><\/dt>\n<dd><p>To get the full experience of the next-generation WordPress Page Builder, you\u2019ll need the latest version of Beaver Builder installed on your website.<\/p><\/dd>\n<dt id=\"do%20i%20need%20coding%20skills%20to%20use%20modules%20kit%3F\"><h3>Do I Need Coding Skills To Use Modules Kit?<\/h3><\/dt>\n<dd><p>Not! Modules Kit for Beaver Editor is as easy to use as you can think. It works just like Beaver Builder Module, and you don\u2019t need to code.<\/p><\/dd>\n<dt id=\"will%20modules%20kit%20slow%20down%20my%20site%3F\"><h3>Will Modules Kit Slow Down My Site?<\/h3><\/dt>\n<dd><p>Not. We built Modules Kit with performance in mind. It's built to the standards of Beaver Builder. Hence all the required styling is compiled when you use Modules.<\/p><\/dd>\n<dt id=\"is%20modules%20kit%20free%20to%20use%3F\"><h3>Is Modules Kit free to use?<\/h3><\/dt>\n<dd><p>Yes! Modules Kit core features are free.<\/p><\/dd>\n<dt id=\"where%20can%20i%20ask%20for%20help%3F\"><h3>Where can I ask for help?<\/h3><\/dt>\n<dd><p>Please reach out via the official <a href=\"https:\/\/wordpress.org\/support\/plugin\/modules-kit\/\">support forum<\/a> on WordPress.org.<\/p><\/dd>\n\n<\/dl>\n\n<!--section=changelog-->\n<h4>2.0<\/h4>\n\n<p>Release Date: September 22nd, 2026\n* [Security] Fixed two admin-notice links that were missing esc_url() before output\n* [Fixed] 11,112 PHPCS violations resolved (0 remaining), verified with the WordPress.org Plugin Check tool\n* [Fixed] Module CSS cache-busting now uses the actual plugin version instead of a hardcoded 1.0\n* [Improved] Full docblock coverage added across the plugin\n* [Verified] Confirmed compatibility with WordPress 7.1\n* [Verified] Plugin Check (PCP) compliance confirmed with zero errors<\/p>\n\n<h4>1.2.1<\/h4>\n\n<p>Release Date: August 22nd, 2026\n* [Updated] WordPress 7.1 compatibility metadata\n* [Fixed] Added direct-access protection to module entry files\n* [Fixed] Prefixed template variables to comply with WordPress naming conventions\n* [Improved] Reviewed security and Plugin Check compliance warnings<\/p>\n\n<h4>1.2.0<\/h4>\n\n<p>Release Date: July 2nd, 2026\n* [Fixed] Namespaced module filenames to prevent conflicts with other Beaver Builder addons\n* [Updated] Latest WordPress 7.0 compatibility check<\/p>\n\n<h4>1.1.3<\/h4>\n\n<p>Release Date: May 11th, 2026\n* Improved overall plugin security<\/p>\n\n<h4>1.1.2<\/h4>\n\n<p>Release Date: December 19th, 2025\n* [Updated] Latest WordPress 6.9 compatibility Check<\/p>\n\n<h4>1.1.1<\/h4>\n\n<p>Release Date: April 22nd, 2025\n* [Updated] Latest WordPress 6.8 compatibility Check<\/p>\n\n<h4>1.1<\/h4>\n\n<p>Release Date: November 22nd, 2024\n* [Updated] Latest WordPress 6.7 compatibility Check<\/p>\n\n<h4>1.0.9<\/h4>\n\n<p>Release Date: July 26th, 2024\n* [Updated] Latest WordPress 6.6.1 compatibility Check<\/p>\n\n<h4>1.0.8<\/h4>\n\n<p>Release Date: April 15th, 2024<\/p>\n\n<ul>\n<li>[Updated] Latest WordPress 6.5.2 compatibility Check<\/li>\n<li>[Resolved] Security, Performance, and Accessibility issue<\/li>\n<\/ul>\n\n<h4>1.0.7<\/h4>\n\n<p>Release Date: October 5th, 2023<\/p>\n\n<ul>\n<li>[Updated] Latest WordPress 6.3.1 compatibility Check<\/li>\n<\/ul>\n\n<h4>1.0.6<\/h4>\n\n<p>Release Date: December 8th, 2022<\/p>\n\n<ul>\n<li>[Updated] Latest WordPress 6.1 compatibility Check<\/li>\n<\/ul>\n\n<h4>1.0.5<\/h4>\n\n<p>Release Date: May 25th, 2022<\/p>\n\n<ul>\n<li>[Updated] Latest WordPress 6.0 compatibility Check<\/li>\n<\/ul>\n\n<h4>1.0.4<\/h4>\n\n<p>Release date: March 13th, 2021<\/p>\n\n<ul>\n<li>[Updated] Latest WordPress 5.7 compatibility Check<\/li>\n<\/ul>\n\n<h4>1.0.3<\/h4>\n\n<p>Release Date: December 24th, 2020<\/p>\n\n<ul>\n<li>[Added] New Elements - Progress Bar, Dual Button, Flipbox, Pricing Table<\/li>\n<li>[Updated] Latest WordPress compatibility Check<\/li>\n<\/ul>\n\n<h4>1.0.2<\/h4>\n\n<p>Release Date: August 16th, 2020<\/p>\n\n<ul>\n<li>[Updated] Latest WordPress compatibility Check<\/li>\n<\/ul>\n\n<h4>1.0.1<\/h4>\n\n<p>Release Date: March 31st, 2020<\/p>\n\n<ul>\n<li>[Updated] Latest WordPress compatibility Check<\/li>\n<\/ul>\n\n<h4>1.0<\/h4>\n\n<p>Release Date: Feburary 4th, 2020<\/p>\n\n<ul>\n<li>Initial release on WordPress.org. Enjoy!<\/li>\n<\/ul>","raw_excerpt":"Additional Beaver Builder modules for Editors, Content Writers and freelancers with advanced styles and options.","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/fi.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin\/116727","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fi.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin"}],"about":[{"href":"https:\/\/fi.wordpress.org\/plugins\/wp-json\/wp\/v2\/types\/plugin"}],"replies":[{"embeddable":true,"href":"https:\/\/fi.wordpress.org\/plugins\/wp-json\/wp\/v2\/comments?post=116727"}],"author":[{"embeddable":true,"href":"https:\/\/fi.wordpress.org\/plugins\/wp-json\/wporg\/v1\/users\/techeshta"}],"wp:attachment":[{"href":"https:\/\/fi.wordpress.org\/plugins\/wp-json\/wp\/v2\/media?parent=116727"}],"wp:term":[{"taxonomy":"plugin_section","embeddable":true,"href":"https:\/\/fi.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_section?post=116727"},{"taxonomy":"plugin_tags","embeddable":true,"href":"https:\/\/fi.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_tags?post=116727"},{"taxonomy":"plugin_category","embeddable":true,"href":"https:\/\/fi.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_category?post=116727"},{"taxonomy":"plugin_contributors","embeddable":true,"href":"https:\/\/fi.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_contributors?post=116727"},{"taxonomy":"plugin_business_model","embeddable":true,"href":"https:\/\/fi.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_business_model?post=116727"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}