{"id":151585,"date":"2021-12-31T07:08:10","date_gmt":"2021-12-31T07:08:10","guid":{"rendered":"https:\/\/wordpress.org\/plugins\/card-elements-for-beaver-builder\/"},"modified":"2026-09-21T10:46:12","modified_gmt":"2026-09-21T10:46:12","slug":"card-elements-for-beaver-builder","status":"publish","type":"plugin","link":"https:\/\/bho.wordpress.org\/plugins\/card-elements-for-beaver-builder\/","author":16202600,"comment_status":"closed","ping_status":"closed","template":"","meta":{"version":"2.0","stable_tag":"2.0","tested":"7.1.2","requires":"4.8","requires_php":"8.0","requires_plugins":null,"header_name":"Card Elements for Beaver Builder","header_author":"Techeshta","header_description":"Card Elements for Beaver Builder is a bunch of additional beaver builder modules for Editors, Content Writers and freelancers (to provide all possible options).","assets_banners_color":"643634","last_updated":"2026-09-21 10:46:12","external_support_url":"","external_repository_url":"","donate_link":"https:\/\/www.paypal.me\/techeshta","header_plugin_uri":"https:\/\/wordpress.org\/plugins\/card-elements-for-beaver-builder\/","header_author_uri":"https:\/\/www.techeshta.com","rating":0,"author_block_rating":0,"active_installs":10,"downloads":2314,"num_ratings":0,"support_threads":0,"support_threads_resolved":0,"author_block_count":0,"sections":["description","installation","faq","changelog"],"tags":{"1.1":{"tag":"1.1","author":"techeshta","date":"2026-08-20 11:19:51","revision":3656642},"1.1.1":{"tag":"1.1.1","author":"techeshta","date":"2026-08-20 11:31:46","revision":3656671},"2.0":{"tag":"2.0","author":"techeshta","date":"2026-09-21 10:46:12","revision":3705418}},"upgrade_notice":[],"ratings":[],"assets_icons":{"icon-128x128.png":{"filename":"icon-128x128.png","revision":2651287,"resolution":"128x128","location":"assets","locale":"","width":128,"height":128},"icon-256x256.png":{"filename":"icon-256x256.png","revision":2651287,"resolution":"256x256","location":"assets","locale":"","width":256,"height":256}},"assets_banners":{"banner-1544x500.png":{"filename":"banner-1544x500.png","revision":2651287,"resolution":"1544x500","location":"assets","locale":"","width":1544,"height":500},"banner-772x250.png":{"filename":"banner-772x250.png","revision":2651287,"resolution":"772x250","location":"assets","locale":"","width":772,"height":250}},"assets_blueprints":{"blueprint.json":{"filename":"blueprint.json","revision":3705419,"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\":\"card-elements-for-beaver-builder\"},\"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 = CEBB_DIR . 'assets\\\/images\\\/default.png';\\n$upload_dir          = wp_upload_dir();\\n\\n$sample_posts = array(\\n\\tarray(\\n\\t\\t'title'   => 'Choosing the Right Card Layout for Your Blog',\\n\\t\\t'content' => 'Card based layouts help readers scan content quickly. Here is how to pick a grid, masonry, or list style for your next redesign.',\\n\\t),\\n\\tarray(\\n\\t\\t'title'   => 'Designing Testimonials That Build Trust',\\n\\t\\t'content' => 'A well placed testimonial card can turn a casual visitor into a customer. Learn what makes a testimonial section convincing.',\\n\\t),\\n\\tarray(\\n\\t\\t'title'   => 'Introducing Your Team With Profile Cards',\\n\\t\\t'content' => 'Profile cards are one of the fastest ways to put a human face on your company page. Here are a few layout ideas to try.',\\n\\t),\\n\\tarray(\\n\\t\\t'title'   => 'Beaver Builder Tips for Faster Page Building',\\n\\t\\t'content' => 'A handful of workflow tips that will save you time the next time you sit down to build a page with Beaver Builder.',\\n\\t),\\n\\tarray(\\n\\t\\t'title'   => 'Five Ways to Style a Post Grid',\\n\\t\\t'content' => 'Post grids do not have to look the same on every site. Here are five simple variations you can apply today.',\\n\\t),\\n\\tarray(\\n\\t\\t'title'   => 'Why Card UI Still Works in 2026',\\n\\t\\t'content' => 'Card based interfaces remain popular for good reason. We look at why the pattern has stuck around and where it works best.',\\n\\t),\\n);\\n\\nforeach ( $sample_posts as $index => $sample_post ) {\\n\\t$post_id = wp_insert_post(\\n\\t\\tarray(\\n\\t\\t\\t'post_title'   => $sample_post['title'],\\n\\t\\t\\t'post_content' => $sample_post['content'],\\n\\t\\t\\t'post_status'  => 'publish',\\n\\t\\t\\t'post_type'    => 'post',\\n\\t\\t),\\n\\t\\ttrue\\n\\t);\\n\\n\\tif ( is_wp_error( $post_id ) ) {\\n\\t\\tcontinue;\\n\\t}\\n\\n\\t$filename    = 'card-elements-sample-' . ( $index + 1 ) . '.png';\\n\\t$destination = trailingslashit( $upload_dir['path'] ) . $filename;\\n\\n\\tif ( ! copy( $placeholder_source, $destination ) ) {\\n\\t\\tcontinue;\\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'     => $sample_post['title'],\\n\\t\\t\\t'post_status'    => 'inherit',\\n\\t\\t),\\n\\t\\t$destination,\\n\\t\\t$post_id\\n\\t);\\n\\n\\tif ( is_wp_error( $attachment_id ) ) {\\n\\t\\tcontinue;\\n\\t}\\n\\n\\t$attachment_data = wp_generate_attachment_metadata( $attachment_id, $destination );\\n\\twp_update_attachment_metadata( $attachment_id, $attachment_data );\\n\\tset_post_thumbnail( $post_id, $attachment_id );\\n}\\n\\n$page_id = wp_insert_post(\\n\\tarray(\\n\\t\\t'post_title'  => 'Card Elements 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\\nFLBuilderModel::set_post_id( $page_id );\\nFLBuilderModel::enable();\\n\\nfunction cebb_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 cebb_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 = cebb_demo_row( '1-col' );\\ncebb_demo_module( 'heading', array(\\n\\t'heading' => 'Card Elements for Beaver Builder',\\n\\t'tag'     => 'h1',\\n), $cols[0]->node );\\n\\n\\\/\\\/ Profile card section.\\n$cols = cebb_demo_row( '1-col' );\\ncebb_demo_module( 'heading', array(\\n\\t'heading' => 'Profile Card',\\n\\t'tag'     => 'h2',\\n), $cols[0]->node );\\n\\n$cols = cebb_demo_row( '3-cols' );\\n\\ncebb_demo_module( 'profile-card', array(\\n\\t'profile_style'       => 'profile-card-style-1',\\n\\t'profile_title'       => 'Alkesh Miyani',\\n\\t'profile_designation' => 'Founder',\\n), $cols[0]->node );\\n\\ncebb_demo_module( 'profile-card', array(\\n\\t'profile_style'       => 'profile-card-style-2',\\n\\t'profile_title'       => 'Vastar Para',\\n\\t'profile_designation' => 'Lead Developer',\\n), $cols[1]->node );\\n\\ncebb_demo_module( 'profile-card', array(\\n\\t'profile_style'       => 'profile-card-style-3',\\n\\t'profile_title'       => 'Hadi Hirpara',\\n\\t'profile_designation' => 'Designer',\\n), $cols[2]->node );\\n\\n\\\/\\\/ Testimonial card section.\\n$cols = cebb_demo_row( '1-col' );\\ncebb_demo_module( 'heading', array(\\n\\t'heading' => 'Testimonial Card',\\n\\t'tag'     => 'h2',\\n), $cols[0]->node );\\n\\n$cols = cebb_demo_row( '2-cols' );\\n\\ncebb_demo_module( 'testimonial-card', array(\\n\\t'testimonial_style'       => 'testimonial-card-style-1',\\n\\t'testimonial_title'       => 'Sarah Johnson',\\n\\t'testimonial_designation' => 'Marketing Manager',\\n\\t'testimonial_description' => 'Card Elements made it so easy to showcase our team and reviews without touching a line of code.',\\n), $cols[0]->node );\\n\\ncebb_demo_module( 'testimonial-card', array(\\n\\t'testimonial_style'       => 'testimonial-card-style-2',\\n\\t'testimonial_title'       => 'David Lee',\\n\\t'testimonial_designation' => 'Small Business Owner',\\n\\t'testimonial_description' => 'The variety of card styles let us match our brand perfectly. Highly recommended for Beaver Builder users.',\\n), $cols[1]->node );\\n\\n\\\/\\\/ Post card section.\\n$cols = cebb_demo_row( '1-col' );\\ncebb_demo_module( 'heading', array(\\n\\t'heading' => 'Post Card',\\n\\t'tag'     => 'h2',\\n), $cols[0]->node );\\n\\n$cols = cebb_demo_row( '1-col' );\\ncebb_demo_module( 'post-card', array(\\n\\t'post_card_style'   => 'post-card-style-1',\\n\\t'post_card_columns' => '3',\\n\\t'number_of_posts'   => '6',\\n), $cols[0]->node );\\n\\nFLBuilderModel::reset_post_id();\\n\"}]}"}},"all_blocks":[],"tagged_versions":["1.1","1.1.1","2.0"],"block_files":[],"assets_screenshots":{"screenshot-1.png":{"filename":"screenshot-1.png","revision":2651287,"resolution":"1","location":"assets","locale":"","width":1285,"height":688},"screenshot-2.png":{"filename":"screenshot-2.png","revision":2651287,"resolution":"2","location":"assets","locale":"","width":1366,"height":724},"screenshot-3.png":{"filename":"screenshot-3.png","revision":2651287,"resolution":"3","location":"assets","locale":"","width":1243,"height":488},"screenshot-4.png":{"filename":"screenshot-4.png","revision":2651287,"resolution":"4","location":"assets","locale":"","width":1222,"height":708},"screenshot-5.png":{"filename":"screenshot-5.png","revision":2651287,"resolution":"5","location":"assets","locale":"","width":1121,"height":679}},"screenshots":{"1":"Profile Card - Card Style 1","2":"Profile Card - Card Style 3","3":"Testimonial Card - Card Style 1","4":"Post Card - Card Style 1","5":"Post Card - Card Style 2"}},"plugin_section":[],"plugin_tags":[77390,147793,276639,63165,276638],"plugin_category":[],"plugin_contributors":[133258,175705,161569,167400],"plugin_business_model":[],"class_list":["post-151585","plugin","type-plugin","status-publish","hentry","plugin_tags-beaver-builder-addon","plugin_tags-beaver-builder-module","plugin_tags-post-card-widget","plugin_tags-profile-card-widget","plugin_tags-testimonial-card-widget","plugin_contributors-alkesh7","plugin_contributors-hadihirpara","plugin_contributors-techeshta","plugin_contributors-vastarpara","plugin_committers-alkesh7","plugin_committers-techeshta","plugin_support_reps-alkesh7"],"banners":{"banner":"https:\/\/ps.w.org\/card-elements-for-beaver-builder\/assets\/banner-772x250.png?rev=2651287","banner_2x":"https:\/\/ps.w.org\/card-elements-for-beaver-builder\/assets\/banner-1544x500.png?rev=2651287","banner_rtl":false,"banner_2x_rtl":false},"icons":{"svg":false,"icon":"https:\/\/ps.w.org\/card-elements-for-beaver-builder\/assets\/icon-128x128.png?rev=2651287","icon_2x":"https:\/\/ps.w.org\/card-elements-for-beaver-builder\/assets\/icon-256x256.png?rev=2651287","generated":false},"screenshots":[{"src":"https:\/\/ps.w.org\/card-elements-for-beaver-builder\/assets\/screenshot-1.png?rev=2651287","caption":"Profile Card - Card Style 1"},{"src":"https:\/\/ps.w.org\/card-elements-for-beaver-builder\/assets\/screenshot-2.png?rev=2651287","caption":"Profile Card - Card Style 3"},{"src":"https:\/\/ps.w.org\/card-elements-for-beaver-builder\/assets\/screenshot-3.png?rev=2651287","caption":"Testimonial Card - Card Style 1"},{"src":"https:\/\/ps.w.org\/card-elements-for-beaver-builder\/assets\/screenshot-4.png?rev=2651287","caption":"Post Card - Card Style 1"},{"src":"https:\/\/ps.w.org\/card-elements-for-beaver-builder\/assets\/screenshot-5.png?rev=2651287","caption":"Post Card - Card Style 2"}],"raw_content":"<!--section=description-->\n<p>Card Elements for Beaver Builder is an effective and user-friendly Beaver Builder plugin to showcase your team profiles, testimonials (client reviews), and post cards in multiple ways with unique card-style designs. It is a flexible and straightforward way to add new card widgets to Beaver Builder Page Builder. Plus, it's one of the best WordPress card plugins to attract more visitors easy to manage for beginners and developers alike.<\/p>\n\n<p>Card Elements for Beaver Builder is bundled with precisely designed 2+ most useful card elements to showcase and decorate your website with card styling. We will keep adding more in future versions.<\/p>\n\n<p>If you are looking for a card presentation design for Beaver Builder, then Card Elements is the best solution you have never seen before. Our goal is to deliver the ultimate experience to our loyal users.<\/p>\n\n<p><strong><a href=\"https:\/\/beaverbuilder.techeshta.com\/card-elements-for-beaver-builder\/?utm_medium=wp.org&amp;utm_source=wordpressorg&amp;utm_campaign=readme&amp;utm_content=cardelementsforbeaverbuilder\">View Demo<\/a> | <a href=\"https:\/\/www.techeshta.com\/docs\/card-elements-for-beaver-builder\/?utm_medium=wp.org&amp;utm_source=wordpressorg&amp;utm_campaign=readme&amp;utm_content=techeshta\">Documentation<\/a><\/strong><\/p>\n\n<h3>Where is the Card Elements for Beaver Builder plugin useful?<\/h3>\n\n<p>Card Elements for Beaver Builder is useful for all WordPress websites. Below is a small list of purposes for which you can start using the Card Elements plugin:<\/p>\n\n<ul>\n<li>Decorate your blog posts in various card styles.<\/li>\n<li>Showcase customer reviews in attractive, unique layouts.<\/li>\n<li>Easily display team profiles on any post or page.<\/li>\n<li>Best card styles to highlight your client's testimonials.<\/li>\n<li>Easily change the look of your card elements anytime.<\/li>\n<li>Etc.<\/li>\n<\/ul>\n\n<h3>Ready-made Card Elements<\/h3>\n\n<p>We have designed 2+ most useful card elements to showcase and decorate your website with card styling. It allows you to climb the top of your design capabilities.<\/p>\n\n<p><strong>1. <a href=\"https:\/\/beaverbuilder.techeshta.com\/card-elements-for-beaver-builder\/profile-card\/?utm_medium=wp.org&amp;utm_source=wordpressorg&amp;utm_campaign=readme&amp;utm_content=cardelementsforbeaverbuilder\">Profile Card<\/a><\/strong><\/p>\n\n<p>There are 5+ unique card styles for your Profile Card, which make your team profile look more polished and professional.<\/p>\n\n<p><strong>2. <a href=\"https:\/\/beaverbuilder.techeshta.com\/card-elements-for-beaver-builder\/testimonial-card\/?utm_medium=wp.org&amp;utm_source=wordpressorg&amp;utm_campaign=readme&amp;utm_content=cardelementsforbeaverbuilder\">Testimonial Card<\/a><\/strong><\/p>\n\n<p>There are 2+ unique card styles for Testimonial Cards. You can easily switch styles anytime.<\/p>\n\n<p><strong>3. <a href=\"https:\/\/beaverbuilder.techeshta.com\/card-elements-for-beaver-builder\/post-card\/?utm_medium=wp.org&amp;utm_source=wordpressorg&amp;utm_campaign=readme&amp;utm_content=cardelementsforbeaverbuilder\">Post Card<\/a><\/strong><\/p>\n\n<p>There are 2+ unique card styles available for your Post Card \ufffd showcase your listings or blog posts beautifully.<\/p>\n\n<p>Many more coming soon ...<\/p>\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\/card-elements-for-beaver-builder\/\">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 need any custom Beaver Builder card widgets for your site.<\/p>\n\n<p><em>Note:<\/em> This plugin is a widget of <a href=\"https:\/\/wordpress.org\/plugins\/beaver-builder-lite-version\/\">Beaver Builder Page Builder<\/a> and will only work with Beaver Builder Page Builder installed.<\/p>\n\n<h3>Like Card Elements for Beaver Builder Plugin?<\/h3>\n\n<ul>\n<li>Don't forget to rate us on <a href=\"https:\/\/wordpress.org\/support\/plugin\/card-elements-for-beaver-builder\/reviews\/?rate=5#new-post\">WordPress<\/a> :)<\/li>\n<\/ul>\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>Card Elements for Beaver Builder<\/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\/card-elements-for-beaver-builder.zip\">Card Elements for Beaver Builder<\/a><\/strong><\/li>\n<li>Upload the <strong>'card-elements-for-Beaver Builder'<\/strong> folder to the \/wp-content\/plugins\/ directory<\/li>\n<li>Activate <strong>Card Elements for Beaver Builder<\/strong> plugin from your plugins page<\/li>\n<\/ol>\n\n<!--section=faq-->\n<dl>\n<dt id=\"can%20i%20add%20multiple%20card%20elements%20to%20a%20single%20page%3F\"><h3>Can I add multiple Card elements to a single page?<\/h3><\/dt>\n<dd><p>Yes, you can. Card Elements for Beaver Builder plugin give you the ability to add <strong>multiple card styles on the same page<\/strong>. You need to drag and drop that module various times and select different card styles whatever you want.<\/p><\/dd>\n<dt id=\"can%20i%20change%20color%20or%20customize%20the%20card%20style%20as%20per%20my%20wish%3F\"><h3>Can I change color or customize the card style as per my wish?<\/h3><\/dt>\n<dd><p>Yes, you can customize it. We provided all possible options in the backend to update it from default card elements.<\/p><\/dd>\n<dt id=\"does%20card%20elements%20for%20beaver%20builder%20give%20me%20total%20control%20of%20my%20card%20styles%3F\"><h3>Does Card Elements for Beaver Builder give me total control of my card styles?<\/h3><\/dt>\n<dd><p>Yes, Card Elements for Beaver Builder gives you total control of your card styles. You just need to set up everything correctly and play with it. You may get more than your expectations.<\/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\/card-elements-for-beaver-builder\/\">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 21st, 2026<\/p>\n\n<ul>\n<li>[Security] Added the required direct-access guard to 21 files that were missing it entirely<\/li>\n<li>[Security] Removed a redundant echo wrapper that was discarding output and tripping escaping checks; hardened the testimonial star-rating output with wp_kses()<\/li>\n<li>[Fixed] Replaced outdated escaping-suppression comments no longer recognized by current coding-standards tooling<\/li>\n<li>[Fixed] Duplicated \"Tags:\" label in the readme header<\/li>\n<li>[Updated] Confirmed compatibility with WordPress 7.1.1<\/li>\n<li>[Improved] Moved the main plugin class into its own file and renamed the module loader file per WordPress file-naming conventions<\/li>\n<li>[Verified] Plugin Check (PCP) compliance confirmed with zero errors<\/li>\n<\/ul>\n\n<h4>1.1.1<\/h4>\n\n<p>Release date: August 20th, 2026<\/p>\n\n<ul>\n<li>[Security] Whitelisted the post\/testimonial\/profile card \"Name HTML Tag\" settings to prevent stored XSS via raw HTML tag injection<\/li>\n<li>[Fixed] Post Card \"Categories\" field defaulted to non-existent term IDs, causing the module to show zero posts until a category was manually selected<\/li>\n<li>[Updated] Confirmed compatibility with WordPress 7.1 and Beaver Builder 2.10.3.2<\/li>\n<\/ul>\n\n<h4>1.1<\/h4>\n\n<p>Release date: July 10th, 2025<\/p>\n\n<ul>\n<li>[Updated] Latest WordPress 7.0 compatibility<\/li>\n<li>[Improved] Removed deprecated load_plugin_textdomain() function (WordPress handles text domain automatically)<\/li>\n<li>[Improved] Enhanced PHP documentation and code comments for better readability<\/li>\n<li>[Fixed] Code formatting and PHPCS compatibility improvements<\/li>\n<li>[Security] Security and code quality audit completed<\/li>\n<\/ul>\n\n<h4>1.0.8<\/h4>\n\n<p>Release date: December 19th, 2025<\/p>\n\n<ul>\n<li>[Updated] Latest WordPress 6.9 compatibility Check<\/li>\n<\/ul>\n\n<h4>1.0.7<\/h4>\n\n<p>Release date: April 22nd, 2025<\/p>\n\n<ul>\n<li>[Updated] Latest WordPress 6.8 compatibility Check<\/li>\n<\/ul>\n\n<h4>1.0.6<\/h4>\n\n<p>Release date: November 22nd, 2024<\/p>\n\n<ul>\n<li>[Updated] Latest WordPress 6.7 compatibility Check<\/li>\n<\/ul>\n\n<h4>1.0.5<\/h4>\n\n<p>Release date: July 16th, 2024<\/p>\n\n<ul>\n<li>[Updated] Latest WordPress 6.6 compatibility Check<\/li>\n<\/ul>\n\n<h4>1.0.4<\/h4>\n\n<p>Release Date: April 13th, 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.3<\/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.2<\/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.1<\/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.0<\/h4>\n\n<p>Release Date: December 27th, 2021<\/p>\n\n<ul>\n<li>Initial release on WordPress.org. Enjoy!<\/li>\n<\/ul>","raw_excerpt":"Elevate your Beaver Builder designs with customizable card elements - profile cards, testimonials, and post grids in multiple unique styles.","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/bho.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin\/151585","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/bho.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin"}],"about":[{"href":"https:\/\/bho.wordpress.org\/plugins\/wp-json\/wp\/v2\/types\/plugin"}],"replies":[{"embeddable":true,"href":"https:\/\/bho.wordpress.org\/plugins\/wp-json\/wp\/v2\/comments?post=151585"}],"author":[{"embeddable":true,"href":"https:\/\/bho.wordpress.org\/plugins\/wp-json\/wporg\/v1\/users\/techeshta"}],"wp:attachment":[{"href":"https:\/\/bho.wordpress.org\/plugins\/wp-json\/wp\/v2\/media?parent=151585"}],"wp:term":[{"taxonomy":"plugin_section","embeddable":true,"href":"https:\/\/bho.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_section?post=151585"},{"taxonomy":"plugin_tags","embeddable":true,"href":"https:\/\/bho.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_tags?post=151585"},{"taxonomy":"plugin_category","embeddable":true,"href":"https:\/\/bho.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_category?post=151585"},{"taxonomy":"plugin_contributors","embeddable":true,"href":"https:\/\/bho.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_contributors?post=151585"},{"taxonomy":"plugin_business_model","embeddable":true,"href":"https:\/\/bho.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_business_model?post=151585"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}