Changeset 2146743
- Timestamp:
- 08/28/2019 03:04:54 AM (7 years ago)
- Location:
- buyte/trunk
- Files:
-
- 8 added
- 4 edited
-
README.txt (modified) (1 diff)
-
admin (added)
-
admin/css (added)
-
admin/css/admin.css (added)
-
admin/css/admin.js (added)
-
buyte.php (modified) (3 diffs)
-
includes/class-wc-buyte-config.php (modified) (1 diff)
-
includes/class-wc-buyte-widget.php (modified) (2 diffs)
-
public (added)
-
public/js (added)
-
public/js/display.js (added)
-
public/js/product_page.js (added)
Legend:
- Unmodified
- Added
- Removed
-
buyte/trunk/README.txt
r2141663 r2146743 2 2 Contributors: webdoodle 3 3 Tags: apple pay, google pay, fast checkout, digital wallet, mobile first, mobile checkout, 4 Stable tag: 0.1. 64 Stable tag: 0.1.7 5 5 Tested up to: 5.2.2 6 6 License: GPLv2 or later License http://www.gnu.org/licenses/gpl-2.0.html -
buyte/trunk/buyte.php
r2141663 r2146743 5 5 * Plugin URI: https://wordpress.org/plugins/buyte-woocommerce-plugin/ 6 6 * Description: Offer your customers Apple Pay and Google Pay in a single install. By integrating Buyte into your e-commerce website, your visitors can securely checkout with their mobile wallet. 7 * Version: 0.1. 67 * Version: 0.1.7 8 8 * Author: Buyte 9 9 * Author URI: https://www.buytecheckout.com/ … … 13 13 * 14 14 * 15 * @version 0.1. 615 * @version 0.1.7 16 16 * @package Buyte 17 17 * @author Buyte … … 29 29 class WC_Buyte{ 30 30 /* version number */ 31 const VERSION = '0.1. 6';31 const VERSION = '0.1.7'; 32 32 /* ajax */ 33 33 const AJAX_SUCCESS = 'buyte_success'; -
buyte/trunk/includes/class-wc-buyte-config.php
r2140321 r2146743 64 64 65 65 public function load_admin_scripts() { 66 $admin_js_url = plugin_dir_url( __FILE__ ) . '../a ssets/css/admin.js';67 $admin_css_url = plugin_dir_url( __FILE__ ) . '../a ssets/css/admin.css';66 $admin_js_url = plugin_dir_url( __FILE__ ) . '../admin/css/admin.js'; 67 $admin_css_url = plugin_dir_url( __FILE__ ) . '../admin/css/admin.css'; 68 68 wp_register_style( 'buyte-admin-style', $admin_css_url ); 69 69 wp_enqueue_style( 'buyte-admin-style' ); -
buyte/trunk/includes/class-wc-buyte-widget.php
r2140321 r2146743 189 189 'product_id' => $product->get_id() 190 190 )); 191 $page_js = esc_url(plugins_url(' assets/js/product_page.js', dirname(__FILE__)));191 $page_js = esc_url(plugins_url('public/js/product_page.js', dirname(__FILE__))); 192 192 $this->render( 193 193 $output_options, … … 227 227 228 228 // Register the script 229 wp_register_script( 'buyte_display', esc_url(plugins_url(' assets/js/display.js', dirname(__FILE__))), array( 'buyte_js' ));229 wp_register_script( 'buyte_display', esc_url(plugins_url('public/js/display.js', dirname(__FILE__))), array( 'buyte_js' )); 230 230 // Localize config to script 231 231 wp_localize_script( 'buyte_display', 'config', $output_options );
Note: See TracChangeset
for help on using the changeset viewer.