Changeset 1666996
- Timestamp:
- 05/30/2017 10:20:16 AM (9 years ago)
- Location:
- woo-visual-hook-guide/trunk
- Files:
-
- 4 edited
-
inc/hook-library.php (modified) (2 diffs)
-
inc/show-hooks.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
woo-visual-hook-guide.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woo-visual-hook-guide/trunk/inc/hook-library.php
r1573079 r1666996 55 55 'woocommerce_after_checkout_billing_form', 56 56 'woocommerce_checkout_order_review', 57 'woocommerce_cart_collaterals',58 'woocommerce_proceed_to_checkout',59 57 'woocommerce_view_order', 60 58 'woocommerce_thankyou', … … 106 104 'woocommerce_account_add-payment-method_endpoint', 107 105 'woocommerce_account_edit-account_endpoint', 106 'woocommerce_proceed_to_checkout', 108 107 ); 109 108 -
woo-visual-hook-guide/trunk/inc/show-hooks.php
r1573079 r1666996 55 55 public function hook_html_structure( $hooks ) { 56 56 ob_start(); 57 57 58 ?> 58 59 … … 109 110 public function wvhg_style() { 110 111 wp_enqueue_style( 'wvhg-style', plugins_url( 'css/wvhg-style.css', WVHG_BASE_PATH ) ); 111 wp_enqueue_style( 'wvhg-style', plugins_url( 'css/magnific-popup.css.css', WVHG_BASE_PATH ) ); 112 wp_enqueue_style( 'magnific-css', plugins_url( 'css/magnific-popup.css', WVHG_BASE_PATH ) ); 113 wp_enqueue_script( 'magnific-js', plugins_url( 'js/jquery.magnific-popup.min.js', WVHG_BASE_PATH ) ); 114 112 115 wp_enqueue_script( 'wvhg-script', plugins_url( 'js/woo-hook-guide.js', WVHG_BASE_PATH ) ); 113 116 wp_localize_script( 'wvhg-script', 'wvhg_ajax', array( -
woo-visual-hook-guide/trunk/readme.txt
r1573097 r1666996 2 2 Contributors: ayushmalakar 3 3 Tags: woo visual hook guide, woocommerce, hook guide, visual, woocommerce addons 4 Requires at least: 4. 0.05 Tested up to: 4.7. 16 Stable tag: 1.0. 04 Requires at least: 4.5.0 5 Tested up to: 4.7.5 6 Stable tag: 1.0.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 49 49 = 1.0.0 = 50 50 First Version 51 52 =1.0.1= 53 Fixed pop up bug 54 Woocommerce 3.0.x compatible -
woo-visual-hook-guide/trunk/woo-visual-hook-guide.php
r1573079 r1666996 3 3 * Plugin Name: Woo Visual Hook Guide 4 4 * Description: Visual hook guide for WooCommerce. 5 * Version: 1.0. 05 * Version: 1.0.1 6 6 * Author: Ayush Malakar 7 * Author URI: http ://ayushmalakar.com.np/7 * Author URI: https://www.ayushmalakar.com/ 8 8 * Text Domain: woo-visual-hook-guide 9 9 * License: GPL-2.0+ … … 59 59 add_action( 'admin_notices', array( $this, 'wvh_woocommerce_missing_notice' ) ); 60 60 } 61 } // end of contructor 62 public static function get_instance() { 63 // If the single instance hasn't been set, set it now. 64 if ( null == self::$instance ) { 65 self::$instance = new self; 66 } 61 67 62 } // end of contructor 68 return self::$instance; 69 } 70 63 71 64 72 … … 68 76 * @return object A single instance of this class. 69 77 */ 70 public static function get_instance() {71 // If the single instance hasn't been set, set it now.72 if ( null == self::$instance ) {73 self::$instance = new self;74 }75 78 76 return self::$instance;77 }78 79 79 80 /**
Note: See TracChangeset
for help on using the changeset viewer.