PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.7
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.7
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 / product-card / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.7, at blocks/product-card/block.json

208 lines 5.1 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/product-card",
5 "title": "Product Card",
6 "category": "bkbg-marketing",
7 "icon": "cart",
8 "description": "Showcase any product with image, name, price, star rating, features list, badges, and buy button \u2014 no WooCommerce required.",
9 "keywords": [
10 "product",
11 "shop",
12 "ecommerce",
13 "price",
14 "buy",
15 "card"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-product-card-editor",
19 "editorStyle": "bkbg-product-card-style",
20 "style": "bkbg-product-card-style",
21 "viewScript": "bkbg-product-card-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": [
27 "wide"
28 ]
29 },
30 "attributes": {
31 "imageUrl": {
32 "type": "string",
33 "default": ""
34 },
35 "imageId": {
36 "type": "number",
37 "default": 0
38 },
39 "productName": {
40 "type": "string",
41 "default": "Premium Wireless Headphones"
42 },
43 "description": {
44 "type": "string",
45 "default": "Crystal-clear audio with active noise cancellation, 30-hour battery life, and premium comfort cushions."
46 },
47 "price": {
48 "type": "string",
49 "default": "$149.99"
50 },
51 "originalPrice": {
52 "type": "string",
53 "default": "$199.99"
54 },
55 "showOriginal": {
56 "type": "boolean",
57 "default": true
58 },
59 "currency": {
60 "type": "string",
61 "default": ""
62 },
63 "badge": {
64 "type": "string",
65 "default": "Best Seller"
66 },
67 "showBadge": {
68 "type": "boolean",
69 "default": true
70 },
71 "badgeBg": {
72 "type": "string",
73 "default": "#f59e0b"
74 },
75 "badgeColor": {
76 "type": "string",
77 "default": "#ffffff"
78 },
79 "features": {
80 "type": "string",
81 "default": "Active Noise Cancellation\n30-hour battery\nBluetooth 5.3\nFoldable design\nCarrying case included"
82 },
83 "showFeatures": {
84 "type": "boolean",
85 "default": true
86 },
87 "rating": {
88 "type": "number",
89 "default": 4
90 },
91 "ratingCount": {
92 "type": "string",
93 "default": "128"
94 },
95 "showRating": {
96 "type": "boolean",
97 "default": true
98 },
99 "btnLabel": {
100 "type": "string",
101 "default": "Buy Now"
102 },
103 "btnUrl": {
104 "type": "string",
105 "default": "#"
106 },
107 "btnBg": {
108 "type": "string",
109 "default": "#6c3fb5"
110 },
111 "btnColor": {
112 "type": "string",
113 "default": "#ffffff"
114 },
115 "btnRadius": {
116 "type": "number",
117 "default": 10
118 },
119 "secondBtnLabel": {
120 "type": "string",
121 "default": "View Details"
122 },
123 "secondBtnUrl": {
124 "type": "string",
125 "default": "#"
126 },
127 "showSecondBtn": {
128 "type": "boolean",
129 "default": false
130 },
131 "secondBtnBg": {
132 "type": "string",
133 "default": "#f3f4f6"
134 },
135 "secondBtnColor": {
136 "type": "string",
137 "default": "#374151"
138 },
139 "layoutStyle": {
140 "type": "string",
141 "default": "vertical"
142 },
143 "cardBg": {
144 "type": "string",
145 "default": "#ffffff"
146 },
147 "cardBorder": {
148 "type": "string",
149 "default": "#e5e7eb"
150 },
151 "cardRadius": {
152 "type": "number",
153 "default": 16
154 },
155 "cardShadow": {
156 "type": "boolean",
157 "default": true
158 },
159 "imgHeight": {
160 "type": "number",
161 "default": 260
162 },
163 "imgBg": {
164 "type": "string",
165 "default": "#f9fafb"
166 },
167 "nameColor": {
168 "type": "string",
169 "default": "#1f2937"
170 },
171 "priceColor": {
172 "type": "string",
173 "default": "#6c3fb5"
174 },
175 "originalPriceColor": {
176 "type": "string",
177 "default": "#9ca3af"
178 },
179 "descColor": {
180 "type": "string",
181 "default": "#6b7280"
182 },
183 "featureColor": {
184 "type": "string",
185 "default": "#374151"
186 },
187 "nameTypo": {
188 "type": "object",
189 "default": {}
190 },
191 "priceTypo": {
192 "type": "object",
193 "default": {}
194 },
195 "descTypo": {
196 "type": "object",
197 "default": {}
198 },
199 "featureTypo": {
200 "type": "object",
201 "default": {}
202 },
203 "btnTypo": {
204 "type": "object",
205 "default": {}
206 }
207 }
208 }