Plugin Directory

Changeset 2146743


Ignore:
Timestamp:
08/28/2019 03:04:54 AM (7 years ago)
Author:
webdoodle
Message:

Preparing for 0.1.7 release

Location:
buyte/trunk
Files:
8 added
4 edited

Legend:

Unmodified
Added
Removed
  • buyte/trunk/README.txt

    r2141663 r2146743  
    22Contributors: webdoodle
    33Tags: apple pay, google pay, fast checkout, digital wallet, mobile first, mobile checkout,
    4 Stable tag: 0.1.6
     4Stable tag: 0.1.7
    55Tested up to: 5.2.2
    66License: GPLv2 or later License http://www.gnu.org/licenses/gpl-2.0.html
  • buyte/trunk/buyte.php

    r2141663 r2146743  
    55 * Plugin URI:        https://wordpress.org/plugins/buyte-woocommerce-plugin/
    66 * 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.6
     7 * Version:           0.1.7
    88 * Author:            Buyte
    99 * Author URI:        https://www.buytecheckout.com/
     
    1313 *
    1414 *
    15  * @version  0.1.6
     15 * @version  0.1.7
    1616 * @package  Buyte
    1717 * @author   Buyte
     
    2929class WC_Buyte{
    3030    /* version number */
    31     const VERSION = '0.1.6';
     31    const VERSION = '0.1.7';
    3232    /* ajax */
    3333    const AJAX_SUCCESS = 'buyte_success';
  • buyte/trunk/includes/class-wc-buyte-config.php

    r2140321 r2146743  
    6464
    6565    public function load_admin_scripts() {
    66         $admin_js_url = plugin_dir_url( __FILE__ ) . '../assets/css/admin.js';
    67         $admin_css_url = plugin_dir_url( __FILE__ ) . '../assets/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';
    6868        wp_register_style( 'buyte-admin-style', $admin_css_url );
    6969        wp_enqueue_style( 'buyte-admin-style' );
  • buyte/trunk/includes/class-wc-buyte-widget.php

    r2140321 r2146743  
    189189            'product_id' => $product->get_id()
    190190        ));
    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__)));
    192192        $this->render(
    193193            $output_options,
     
    227227
    228228        // 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' ));
    230230        // Localize config to script
    231231        wp_localize_script( 'buyte_display', 'config', $output_options );
Note: See TracChangeset for help on using the changeset viewer.