Changeset 3426884
- Timestamp:
- 12/24/2025 01:33:42 PM (3 months ago)
- File:
-
- 1 edited
-
buy-now-woo/assets/blueprints/blueprint.json (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
buy-now-woo/assets/blueprints/blueprint.json
r3426861 r3426884 1 1 { 2 "$schema": "https://playground.wordpress.net/blueprint-schema.json", 2 3 "landingPage": "/wp-admin/admin.php?page=wc-settings&tab=wc_simple_buy_settings", 4 "preferredVersions": { 5 "php": "8.3", 6 "wp": "latest" 7 }, 8 "phpExtensionBundles": [ 9 "kitchen-sink" 10 ], 11 "features": { 12 "networking": true 13 }, 3 14 "steps": [ 4 15 { 5 16 "step": "installPlugin", 6 "plugin Data": {17 "pluginZipFile": { 7 18 "resource": "wordpress.org/plugins", 8 19 "slug": "woocommerce" … … 35 46 "step": "setSiteOptions", 36 47 "options": { 37 "woocommerce_store_address": "", 38 "woocommerce_store_address_2": "", 39 "woocommerce_store_city": "", 40 "woocommerce_default_country": "BD:BD-13", 41 "woocommerce_store_postcode": "", 42 "woocommerce_allowed_countries": "all", 43 "woocommerce_all_except_countries": [], 44 "woocommerce_specific_allowed_countries": [], 45 "woocommerce_ship_to_countries": "", 46 "woocommerce_specific_ship_to_countries": [], 47 "woocommerce_default_customer_address": "base", 48 "woocommerce_address_autocomplete_enabled": "no", 49 "woocommerce_calc_taxes": "no", 50 "woocommerce_enable_coupons": "yes", 51 "woocommerce_calc_discounts_sequentially": "no", 52 "woocommerce_currency": "USD", 53 "woocommerce_currency_pos": "right", 54 "woocommerce_price_thousand_sep": ",", 55 "woocommerce_price_decimal_sep": ".", 56 "woocommerce_price_num_decimals": "2" 48 "woocommerce_onboarding_profile": "a:1:{s:7:\"skipped\";b:1;}", 49 "woocommerce_currency": "BDT", 50 "woocommerce_default_country": "BD:BD-13" 57 51 } 58 52 }, 59 53 { 60 "step": "setSiteOptions", 61 "options": { 62 "woocommerce_shop_page_id": "7", 63 "woocommerce_cart_redirect_after_add": "no", 64 "woocommerce_enable_ajax_add_to_cart": "yes", 65 "woocommerce_placeholder_image": "6", 66 "woocommerce_weight_unit": "kg", 67 "woocommerce_dimension_unit": "cm", 68 "woocommerce_enable_reviews": "yes", 69 "woocommerce_review_rating_verification_label": "yes", 70 "woocommerce_review_rating_verification_required": "no", 71 "woocommerce_enable_review_rating": "yes", 72 "woocommerce_review_rating_required": "yes", 73 "woocommerce_manage_stock": "yes", 74 "woocommerce_hold_stock_minutes": "60", 75 "woocommerce_notify_low_stock": "yes", 76 "woocommerce_notify_no_stock": "yes", 77 "woocommerce_stock_email_recipient": "dev-email@wpengine.local", 78 "woocommerce_notify_low_stock_amount": "2", 79 "woocommerce_notify_no_stock_amount": "0", 80 "woocommerce_hide_out_of_stock_items": "no", 81 "woocommerce_stock_format": "", 82 "woocommerce_file_download_method": "force", 83 "woocommerce_downloads_redirect_fallback_allowed": "no", 84 "woocommerce_downloads_require_login": "no", 85 "woocommerce_downloads_grant_access_after_payment": "yes", 86 "woocommerce_downloads_deliver_inline": "", 87 "woocommerce_downloads_add_hash_to_filename": "yes", 88 "woocommerce_downloads_count_partial": "yes", 89 "woocommerce_attribute_lookup_enabled": "no", 90 "woocommerce_attribute_lookup_direct_updates": "no", 91 "woocommerce_attribute_lookup_optimized_updates": "no", 92 "woocommerce_product_match_featured_image_by_sku": "no" 54 "step": "importWxr", 55 "file": { 56 "resource": "url", 57 "url": "https://gist.githubusercontent.com/Niloys7/9b82e0f2331e26fdf44f98be13f00331/raw/611128ef3eb87464f34067f316ba26468f2a9867/sample_products.xml" 93 58 } 94 59 }, 95 60 { 96 "step": "setSiteOptions", 97 "options": { 98 "woocommerce_prices_include_tax": "no", 99 "woocommerce_tax_based_on": "shipping", 100 "woocommerce_shipping_tax_class": "inherit", 101 "woocommerce_tax_round_at_subtotal": "no", 102 "woocommerce_tax_classes": "", 103 "woocommerce_tax_display_shop": "excl", 104 "woocommerce_tax_display_cart": "excl", 105 "woocommerce_price_display_suffix": "", 106 "woocommerce_tax_total_display": "itemized" 107 } 108 }, 109 { 110 "step": "runSql", 111 "sql": { 112 "resource": "literal", 113 "name": "schema.sql", 114 "contents": "replace into `wp_wc_tax_rate_classes` (`tax_rate_class_id`, `name`, `slug`) VALUES ('1', 'Reduced rate', 'reduced-rate');" 115 } 116 }, 117 { 118 "step": "runSql", 119 "sql": { 120 "resource": "literal", 121 "name": "schema.sql", 122 "contents": "replace into `wp_wc_tax_rate_classes` (`tax_rate_class_id`, `name`, `slug`) VALUES ('2', 'Zero rate', 'zero-rate');" 123 } 124 }, 125 { 126 "step": "setSiteOptions", 127 "options": { 128 "woocommerce_enable_shipping_calc": "yes", 129 "woocommerce_shipping_cost_requires_address": "no", 130 "woocommerce_shipping_hide_rates_when_free": "no", 131 "woocommerce_ship_to_destination": "billing", 132 "woocommerce_shipping_debug_mode": "no" 133 } 134 }, 135 { 136 "step": "runSql", 137 "sql": { 138 "resource": "literal", 139 "name": "schema.sql", 140 "contents": "replace into `wp_woocommerce_shipping_zones` (`zone_id`, `zone_name`, `zone_order`) VALUES ('1', 'Bangladesh', '0');" 141 } 142 }, 143 { 144 "step": "runSql", 145 "sql": { 146 "resource": "literal", 147 "name": "schema.sql", 148 "contents": "replace into `wp_woocommerce_shipping_zone_locations` (`location_id`, `zone_id`, `location_code`, `location_type`) VALUES ('1', '1', 'BD', 'country');" 149 } 150 }, 151 { 152 "step": "runSql", 153 "sql": { 154 "resource": "literal", 155 "name": "schema.sql", 156 "contents": "replace into `wp_woocommerce_shipping_zone_methods` (`zone_id`, `instance_id`, `method_id`, `method_order`, `is_enabled`) VALUES ('1', '1', 'free_shipping', '1', '1');" 157 } 158 }, 159 { 160 "step": "runSql", 161 "sql": { 162 "resource": "literal", 163 "name": "schema.sql", 164 "contents": "replace into `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('385', 'woocommerce_free_shipping_1_settings', 'a:4:{s:5:\\\"title\\\";s:13:\\\"Free shipping\\\";s:8:\\\"requires\\\";s:0:\\\"\\\";s:10:\\\"min_amount\\\";s:1:\\\"0\\\";s:16:\\\"ignore_discounts\\\";s:2:\\\"no\\\";}', 'auto');" 165 } 166 }, 167 { 168 "step": "setSiteOptions", 169 "options": { 170 "woocommerce_pickup_location_settings": [], 171 "pickup_location_pickup_locations": [] 172 } 173 }, 174 { 175 "step": "setSiteOptions", 176 "options": { 177 "woocommerce_bacs_settings": { 178 "enabled": "no", 179 "title": "Direct bank transfer", 180 "description": "Make your payment directly into our bank account. Please use your Order ID as the payment reference. Your order will not be shipped until the funds have cleared in our account.", 181 "instructions": "", 182 "account_details": "", 183 "account_name": "", 184 "account_number": "", 185 "sort_code": "", 186 "bank_name": "", 187 "iban": "", 188 "bic": "" 189 }, 190 "woocommerce_cheque_settings": { 191 "enabled": "no", 192 "title": "Check payments", 193 "description": "Please send a check to Store Name, Store Street, Store Town, Store State / County, Store Postcode.", 194 "instructions": "" 195 }, 196 "woocommerce_cod_settings": { 197 "enabled": "no", 198 "title": "Cash on delivery", 199 "description": "Pay with cash upon delivery.", 200 "instructions": "Pay with cash upon delivery.", 201 "enable_for_methods": [], 202 "enable_for_virtual": "yes" 203 } 204 } 205 }, 206 { 207 "step": "setSiteOptions", 208 "options": { 209 "woocommerce_enable_guest_checkout": "yes", 210 "woocommerce_enable_checkout_login_reminder": "no", 211 "woocommerce_enable_signup_and_login_from_checkout": "no", 212 "woocommerce_enable_myaccount_registration": "no", 213 "woocommerce_registration_generate_password": "yes", 214 "woocommerce_erasure_request_removes_order_data": "no", 215 "woocommerce_erasure_request_removes_download_data": "no", 216 "woocommerce_allow_bulk_remove_personal_data": "no", 217 "woocommerce_registration_privacy_policy_text": "Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].", 218 "woocommerce_checkout_privacy_policy_text": "Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].", 219 "woocommerce_delete_inactive_accounts": { 220 "number": "", 221 "unit": "months" 222 }, 223 "woocommerce_trash_pending_orders": "", 224 "woocommerce_trash_failed_orders": "", 225 "woocommerce_trash_cancelled_orders": "", 226 "woocommerce_anonymize_refunded_orders": { 227 "number": "", 228 "unit": "months" 229 }, 230 "woocommerce_anonymize_completed_orders": { 231 "number": "", 232 "unit": "months" 233 } 234 } 235 }, 236 { 237 "step": "setSiteOptions", 238 "options": { 239 "woocommerce_email_from_name": "twist", 240 "woocommerce_email_from_address": "dev-email@wpengine.local", 241 "previewing_new_templates": null, 242 "woocommerce_email_header_image": "", 243 "woocommerce_email_header_image_width": "120", 244 "woocommerce_email_header_alignment": "left", 245 "woocommerce_email_font_family": "Helvetica", 246 "woocommerce_email_footer_text": "{site_title} — Built with {WooCommerce}", 247 "email_color_palette": null, 248 "woocommerce_email_base_color": "#720eec", 249 "woocommerce_email_background_color": "#f7f7f7", 250 "woocommerce_email_body_background_color": "#ffffff", 251 "woocommerce_email_text_color": "#3c3c3c", 252 "woocommerce_email_footer_text_color": "#3c3c3c", 253 "email_improvements_button": null, 254 "woocommerce_new_order_settings": "html", 255 "woocommerce_cancelled_order_settings": "html", 256 "woocommerce_customer_cancelled_order_settings": "html", 257 "woocommerce_failed_order_settings": "html", 258 "woocommerce_customer_failed_order_settings": "html", 259 "woocommerce_customer_on_hold_order_settings": "html", 260 "woocommerce_customer_processing_order_settings": "html", 261 "woocommerce_customer_completed_order_settings": "html", 262 "woocommerce_customer_refunded_order_settings": "html", 263 "woocommerce_customer_invoice_settings": "html", 264 "woocommerce_customer_note_settings": "html", 265 "woocommerce_customer_reset_password_settings": "html", 266 "woocommerce_customer_new_account_settings": "html", 267 "woocommerce_customer_pos_completed_order_settings": "html", 268 "woocommerce_customer_pos_refunded_order_settings": "html" 269 } 270 }, 271 { 272 "step": "setSiteOptions", 273 "options": { 274 "woocommerce_maxmind_geolocation_settings": { 275 "database_prefix": "0mK7GlZBvSsVluvgfqoqqXCMiAEJdlPL" 276 } 277 } 278 }, 279 { 280 "step": "setSiteOptions", 281 "options": { 282 "woocommerce_coming_soon": "yes", 283 "woocommerce_store_pages_only": "no" 284 } 285 }, 286 { 287 "step": "setSiteOptions", 288 "options": { 289 "woocommerce_cart_page_id": "8", 290 "woocommerce_checkout_page_id": "9", 291 "woocommerce_myaccount_page_id": "10", 292 "woocommerce_terms_page_id": "", 293 "woocommerce_force_ssl_checkout": "no", 294 "woocommerce_unforce_ssl_checkout": "no", 295 "woocommerce_checkout_pay_endpoint": "order-pay", 296 "woocommerce_checkout_order_received_endpoint": "order-received", 297 "woocommerce_myaccount_add_payment_method_endpoint": "add-payment-method", 298 "woocommerce_myaccount_delete_payment_method_endpoint": "delete-payment-method", 299 "woocommerce_myaccount_set_default_payment_method_endpoint": "set-default-payment-method", 300 "woocommerce_myaccount_orders_endpoint": "orders", 301 "woocommerce_myaccount_view_order_endpoint": "view-order", 302 "woocommerce_myaccount_downloads_endpoint": "downloads", 303 "woocommerce_myaccount_edit_account_endpoint": "edit-account", 304 "woocommerce_myaccount_edit_address_endpoint": "edit-address", 305 "woocommerce_myaccount_payment_methods_endpoint": "payment-methods", 306 "woocommerce_myaccount_lost_password_endpoint": "lost-password", 307 "woocommerce_logout_endpoint": "customer-logout", 308 "woocommerce_api_enabled": "no", 309 "woocommerce_allow_tracking": "yes", 310 "woocommerce_show_marketplace_suggestions": "yes", 311 "woocommerce_custom_orders_table_enabled": "yes", 312 "woocommerce_custom_orders_table_data_sync_enabled": null, 313 "woocommerce_analytics_enabled": "yes", 314 "woocommerce_feature_rate_limit_checkout_enabled": "no", 315 "woocommerce_feature_order_attribution_enabled": "yes", 316 "woocommerce_feature_site_visibility_badge_enabled": "yes", 317 "woocommerce_hpos_datastore_caching_enabled": "no", 318 "woocommerce_feature_remote_logging_enabled": "yes", 319 "woocommerce_feature_email_improvements_enabled": "no", 320 "woocommerce_feature_blueprint_enabled": "yes", 321 "woocommerce_feature_cost_of_goods_sold_enabled": "no", 322 "woocommerce_hpos_fts_index_enabled": "no", 323 "woocommerce_feature_block_email_editor_enabled": "no", 324 "woocommerce_feature_point_of_sale_enabled": "yes", 325 "woocommerce_feature_mcp_integration_enabled": "no", 326 "woocommerce_feature_destroy-empty-sessions_enabled": "no" 327 } 61 "step": "login", 62 "username": "admin", 63 "password": "password" 328 64 } 329 65 ]
Note: See TracChangeset
for help on using the changeset viewer.