PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 14.4.2
Jetpack – WP Security, Backup, Speed, & Growth v14.4.2
12.0.3 12.1.3 12.2.3 12.3.2 12.4.2 12.5.2 12.6.4 12.7.3 12.8.3 12.9.5 13.0.2 13.1.5 13.2.4 13.3.3 13.4.5 13.5.2 13.6.2 13.7.2 13.8.3 13.9.2 14.0.1 14.1.1 14.2.2 14.3.1 14.4.2 All 500 releases
jetpack / _inc / blocks / simple-payments / block.json
block.json
107 lines 3.2 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": "jetpack/simple-payments",
5 "title": "Pay with PayPal",
6 "description": "Add credit and debit card payment buttons with minimal setup. Good for collecting donations or payments for products and services.",
7 "keywords": [
8 "buy",
9 "commerce",
10 "credit card",
11 "debit card",
12 "monetize",
13 "earn",
14 "ecommerce",
15 "money",
16 "paid",
17 "payments",
18 "products",
19 "purchase",
20 "sell",
21 "shop",
22 "square",
23 "payments"
24 ],
25 "version": "12.5.0",
26 "textdomain": "jetpack",
27 "category": "monetize",
28 "icon": "<svg viewBox='0 0 24 24' width='24' height='24' xmlns='http://www.w3.org/2000/svg'><path fill='none' d='M0 0h24v24H0V0z' /><path d='M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z' /></svg>",
29 "supports": {
30 "className": false,
31 "customClassName": false,
32 "html": false,
33 "reusable": false
34 },
35 "attributes": {
36 "currency": {
37 "type": "string",
38 "default": "USD"
39 },
40 "content": {
41 "type": "string",
42 "source": "html",
43 "selector": ".jetpack-simple-payments-description p",
44 "default": ""
45 },
46 "email": {
47 "type": "string",
48 "default": ""
49 },
50 "featuredMediaId": {
51 "type": "number",
52 "default": 0
53 },
54 "featuredMediaUrl": {
55 "type": "string",
56 "source": "attribute",
57 "selector": ".jetpack-simple-payments-image img",
58 "attribute": "src",
59 "default": null
60 },
61 "featuredMediaTitle": {
62 "type": "string",
63 "source": "attribute",
64 "selector": ".jetpack-simple-payments-image img",
65 "attribute": "alt",
66 "default": null
67 },
68 "multiple": {
69 "type": "boolean",
70 "default": false
71 },
72 "postLinkUrl": {
73 "type": "string",
74 "source": "attribute",
75 "selector": ".jetpack-simple-payments-purchase",
76 "attribute": "href"
77 },
78 "postLinkText": {
79 "type": "string",
80 "source": "html",
81 "selector": ".jetpack-simple-payments-purchase",
82 "default": "Click here to purchase."
83 },
84 "price": {
85 "type": "number"
86 },
87 "productId": {
88 "type": "number"
89 },
90 "title": {
91 "type": "string",
92 "source": "html",
93 "selector": ".jetpack-simple-payments-title p",
94 "default": ""
95 }
96 },
97 "example": {
98 "attributes": {
99 "price": 25,
100 "title": "Jetpack t-shirt",
101 "content": "Take flight in ultimate comfort with this stylish t-shirt featuring the Jetpack logo.",
102 "email": "jetpack@jetpack.com",
103 "featuredMediaUrl": "./simple-payments_example-1.jpg"
104 }
105 },
106 "editorScript": "jetpack-blocks-editor"
107 }