PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.11
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.11
2.0.13 2.0.12 2.0.11 2.0.10 2.0.9 trunk 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8
blockenberg / blocks / content-lock / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.11, at blocks/content-lock/block.json

223 lines 5.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 3,
4 "name": "blockenberg/content-lock",
5 "title": "Content Lock",
6 "description": "Gate content behind an email opt-in, password, or click-reveal. Perfect for lead generation, member content, and spoilers.",
7 "category": "bkbg-marketing",
8 "icon": "lock",
9 "keywords": [
10 "lock",
11 "gate",
12 "paywall",
13 "email",
14 "password",
15 "reveal",
16 "spoiler",
17 "content protection"
18 ],
19 "supports": {
20 "html": false,
21 "align": [
22 "wide",
23 "full"
24 ]
25 },
26 "attributes": {
27 "lockType": {
28 "type": "string",
29 "default": "email"
30 },
31 "lockedContent": {
32 "type": "string",
33 "default": "<p>This is your protected content. Add anything here — text, images, resources, download links, or exclusive information.</p><p>Visitors must unlock this content to read it.</p>"
34 },
35 "lockStyle": {
36 "type": "string",
37 "default": "blur"
38 },
39 "blurAmount": {
40 "type": "number",
41 "default": 6
42 },
43 "teaserLines": {
44 "type": "number",
45 "default": 3
46 },
47 "icon": {
48 "type": "string",
49 "default": "🔒"
50 },
51 "showIcon": {
52 "type": "boolean",
53 "default": true
54 },
55 "eyebrow": {
56 "type": "string",
57 "default": "Members Only"
58 },
59 "showEyebrow": {
60 "type": "boolean",
61 "default": true
62 },
63 "heading": {
64 "type": "string",
65 "default": "Unlock this content"
66 },
67 "subText": {
68 "type": "string",
69 "default": "Enter your email to get instant access to this exclusive content."
70 },
71 "emailPlaceholder": {
72 "type": "string",
73 "default": "Enter your email address"
74 },
75 "submitLabel": {
76 "type": "string",
77 "default": "Unlock Now"
78 },
79 "privacyNote": {
80 "type": "string",
81 "default": "We respect your privacy. No spam, ever."
82 },
83 "showPrivacy": {
84 "type": "boolean",
85 "default": true
86 },
87 "successHeading": {
88 "type": "string",
89 "default": "You're in! 🎉"
90 },
91 "successText": {
92 "type": "string",
93 "default": "Enjoy your exclusive content below."
94 },
95 "rememberUnlock": {
96 "type": "boolean",
97 "default": true
98 },
99 "storageKey": {
100 "type": "string",
101 "default": ""
102 },
103 "password": {
104 "type": "string",
105 "default": ""
106 },
107 "passwordPlaceholder": {
108 "type": "string",
109 "default": "Enter password"
110 },
111 "passwordSubmitLabel": {
112 "type": "string",
113 "default": "Unlock"
114 },
115 "passwordErrorMsg": {
116 "type": "string",
117 "default": "Incorrect password. Please try again."
118 },
119 "clickButtonLabel": {
120 "type": "string",
121 "default": "Reveal Content"
122 },
123 "clickButtonIcon": {
124 "type": "string",
125 "default": "👁"
126 },
127 "webhookUrl": {
128 "type": "string",
129 "default": ""
130 },
131 "borderRadius": {
132 "type": "number",
133 "default": 16
134 },
135 "padding": {
136 "type": "number",
137 "default": 40
138 },
139 "maxWidth": {
140 "type": "number",
141 "default": 560
142 },
143 "inputRadius": {
144 "type": "number",
145 "default": 8
146 },
147 "overlayBg": {
148 "type": "string",
149 "default": ""
150 },
151 "gateBg": {
152 "type": "string",
153 "default": "#ffffff"
154 },
155 "eyebrowColor": {
156 "type": "string",
157 "default": "#6366f1"
158 },
159 "headingColor": {
160 "type": "string",
161 "default": "#111827"
162 },
163 "textColor": {
164 "type": "string",
165 "default": "#6b7280"
166 },
167 "inputBg": {
168 "type": "string",
169 "default": "#f9fafb"
170 },
171 "inputBorder": {
172 "type": "string",
173 "default": "#e5e7eb"
174 },
175 "inputFocusBorder": {
176 "type": "string",
177 "default": "#6366f1"
178 },
179 "inputColor": {
180 "type": "string",
181 "default": "#111827"
182 },
183 "btnBg": {
184 "type": "string",
185 "default": "#6366f1"
186 },
187 "btnColor": {
188 "type": "string",
189 "default": "#ffffff"
190 },
191 "privacyColor": {
192 "type": "string",
193 "default": "#9ca3af"
194 },
195 "headingSize": {
196 "type": "number",
197 "default": 22
198 },
199 "eyebrowSize": {
200 "type": "number",
201 "default": 11
202 },
203 "subTextSize": {
204 "type": "number",
205 "default": 14
206 },
207 "submitLabelSize": {
208 "type": "number",
209 "default": 15
210 },
211 "typoHeading": {
212 "type": "object",
213 "default": {}
214 },
215 "typoButton": {
216 "type": "object",
217 "default": {}
218 }
219 },
220 "editorScript": "bkbg-content-lock-editor",
221 "style": "bkbg-content-lock-style",
222 "viewScript": "bkbg-content-lock-frontend"
223 }