Changeset 2975851
- Timestamp:
- 10/07/2023 01:42:14 PM (2 years ago)
- Location:
- shop-2-api/trunk
- Files:
-
- 7 edited
-
includes/Base/EnqueueWC.php (modified) (1 diff)
-
includes/Base/EnqueueWCAPI.php (modified) (1 diff)
-
includes/Pages/Admin.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
shop-2-api.php (modified) (2 diffs)
-
templates/dashboard.php (modified) (1 diff)
-
translation/shop2api_dashboard.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
shop-2-api/trunk/includes/Base/EnqueueWC.php
r2905836 r2975851 407 407 'methods' => 'GET', 408 408 'callback' => array($this, 'meta_field_search_callback'), 409 'permission_callback' => '__return_true', 409 410 ) ); 410 411 } -
shop-2-api/trunk/includes/Base/EnqueueWCAPI.php
r2868951 r2975851 24 24 'methods' => 'GET', 25 25 'callback' => array($this, 'meta_field_search_callback'), 26 ) ); 26 'permission_callback' => '__return_true', 27 )); 27 28 register_rest_route( 'shop-2-api/v1', '/search-meta-contains', array( 28 29 'methods' => 'GET', 29 30 'callback' => array($this, 'meta_field_search_callback'), 30 ) ); 31 'permission_callback' => '__return_true', 32 )); 31 33 } 32 34 -
shop-2-api/trunk/includes/Pages/Admin.php
r2962006 r2975851 113 113 ); 114 114 115 add_submenu_page(116 'shop2api_plugin', //Parent Slug117 'Sync Bol Product to WooCommerce', // Page Title118 'Sync Bol Product to WooCommerce', // Menu Title119 'manage_options', // Capability120 'shop2api_bol_to_wc_product', // Menu Slug121 array($this, 'bol_to_wc_product_sync_page') // Function122 );115 // add_submenu_page( 116 // 'shop2api_plugin', //Parent Slug 117 // 'Sync Bol Product to WooCommerce', // Page Title 118 // 'Sync Bol Product to WooCommerce', // Menu Title 119 // 'manage_options', // Capability 120 // 'shop2api_bol_to_wc_product', // Menu Slug 121 // array($this, 'bol_to_wc_product_sync_page') // Function 122 // ); 123 123 124 124 $hook = add_submenu_page( -
shop-2-api/trunk/readme.txt
r2962006 r2975851 3 3 Plugin URI: https://wordpress.org/plugins/shop-2-api/ 4 4 Tags: WooCommerce, Bol 5 Stable Tag: 1.0.2 65 Stable Tag: 1.0.27 6 6 Requires at least: 5.0 7 7 Requires PHP: 7.2 … … 147 147 2) Updated User Registration Process 148 148 149 = 1.0.27 = 150 1) Update Readme with new process and url update 151 2) Fixed bug with the custom WooCommerce Updates. 152 3) Updated dashboard. 153 149 154 == Instructions == 150 1) After installing Shop2Api, a new menu item will be available in your WordPress installation, you can continue and click on it and enter you token which was mailed to you.151 2) If you want to use the trial version you there is a button "Use Trail Account" where you can enter your account and start using Shop 2 API without restrictions for 6 months.152 2) After you clicked on the connect button the Token will be linked to your URL and will also be the URL for your WooCommerce connection. If you need to unlink it, you can mail support@shop2api.com155 1) After installing Shop2Api, a new menu item will be available in your WordPress installation, you can continue and click on it and enter your e-mail address. 156 2) You can use the trail account where start using Shop 2 API without restrictions for 6 months and cancel at anytime by uninstalling the plugin, the plugin will mark the account as inactive if no payment is done after 6 months. 157 2) After you clicked on the connect button the URL for your WooCommerce connection will be linked to your e-mail. If you need to unlink it, you can mail support@shop2api.com 153 158 3) If the connection with the red icon still needs to be connected to your web shop, clicking on the icons will open the connection screens. 154 159 4) You can click on the WooCommerce icon, and you will be rerouted to the WooCommerce permission screen as below. … … 164 169 165 170 == Frequently Asked Questions == 166 https:// www.shop2api.com/faq.html171 https://shop2api.com/manual/faq.php -
shop-2-api/trunk/shop-2-api.php
r2962006 r2975851 5 5 Plugin URI: https://wordpress.org/plugins/shop-2-api/ 6 6 Description: The plugin Shop2Api will sync products between e-Commerce platforms. The current supported e-Commerce platforms are WooCommerce to Bol.com, and we are working on Amazon, Shopify and others. We added a koopblok service so that you can check if you lower your price can you get koopblok. 7 Version: 1.0.2 67 Version: 1.0.27 8 8 Requires at least: 5.0 9 9 Requires PHP: 7.2 … … 34 34 define('SHOP2API_PLUGIN_URL', plugin_dir_url( __FILE__ )); 35 35 define('SHOP2API_PLUGIN', plugin_basename( __FILE__ )); 36 define ('VERSION', '1.0.2 6');36 define ('VERSION', '1.0.27'); 37 37 38 38 // Register items in the project. -
shop-2-api/trunk/templates/dashboard.php
r2962006 r2975851 140 140 </div> 141 141 142 <div class="card inline shop-2-api-connect-save-sync" id='force-sync-card'>143 <div id="connection-completed" class="tooltip">144 <span class="tooltiptext tooltip-left"><?php echo $force_sync_tooltip; ?></span>145 <h3>146 <span class="dashicons dashicons-image-rotate force-sync" id="force-sync"></span>147 <?php echo $force_sync ?>148 </h3>149 </div>150 </div>151 152 142 <div class="card inline" id='sync-summary-product-card'> 153 143 <h1> -
shop-2-api/trunk/translation/shop2api_dashboard.php
r2962006 r2975851 28 28 $wc_to_bol_tooltip_2 = wp_kses(__("Here you can choose WooCommerce or Default fields to send over to Bol.com."), $allowed_html); 29 29 $wc_to_bol_mapping = wp_kses(__("Map WooCommerce fields to Bol.com Fields"), $allowed_html); 30 $force_sync_tooltip = wp_kses(__("This will reset the sync date and start a sync on all products."), $allowed_html);31 $force_sync = wp_kses(__("Force Sync"), $allowed_html);32 30 $sync_summary_product = wp_kses(__("Sync Summary Offers"), $allowed_html); 33 31 $sync_summary_offer = wp_kses(__("Sync Summary Products"), $allowed_html);
Note: See TracChangeset
for help on using the changeset viewer.