Changeset 3270932
- Timestamp:
- 04/11/2025 09:36:10 AM (8 months ago)
- Location:
- woocommerce-breadcrumbs
- Files:
-
- 4 edited
- 1 copied
-
tags/1.2.0 (copied) (copied from woocommerce-breadcrumbs/trunk)
-
tags/1.2.0/readme.txt (modified) (2 diffs)
-
tags/1.2.0/woocommerce-breadcrumbs.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/woocommerce-breadcrumbs.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woocommerce-breadcrumbs/tags/1.2.0/readme.txt
r3184163 r3270932 4 4 Tags: ecommerce, e-commerce, commerce, woocommerce, breadcrumbs 5 5 Requires at least: 4.6 6 Tested up to: 6. 77 Stable tag: 1. 1.06 Tested up to: 6.8 7 Stable tag: 1.2.0 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 66 66 == Changelog == 67 67 68 = 1.2.0 = 69 - Fixed issue with text domain loading notice 70 - Updated WC Tested tags 71 68 72 = 1.1.0 = 69 73 - Declare compatibility with WooCommerce HPOS -
woocommerce-breadcrumbs/tags/1.2.0/woocommerce-breadcrumbs.php
r3184163 r3270932 4 4 Plugin URI: http://maddisondesigns.com/woocommerce-breadcrumbs 5 5 Description: A simple plugin to style the WooCommerce Breadcrumbs or disable them altogether 6 Version: 1. 1.06 Version: 1.2.0 7 7 WC requires at least: 2.6 8 WC tested up to: 9. 38 WC tested up to: 9.8 9 9 Author: Anthony Hortin 10 10 Author URI: http://maddisondesigns.com … … 22 22 23 23 public function __construct() { 24 24 add_action( 'init', array( $this, 'wcb_setup_defaults' ) ); 25 add_action( 'admin_menu', array( $this, 'wcb_create_menu_option' ) ); 26 add_action( 'admin_init', array( $this, 'wcb_admin_init' ) ); 27 add_action( 'init', array( $this, 'wcb_init' ) ); 28 add_filter( 'plugin_action_links', array( $this, 'wcb_add_settings_link'), 10, 2); 29 add_action( 'head', 'woocommerce_breadcrumb', 20, 0); 30 } 31 32 /** 33 * Setup breadcrumb defaults on init hook to ensure translation functions aren't called too early 34 */ 35 public function wcb_setup_defaults() { 25 36 $this->breadcrumb_defaults = array( 26 37 'wcb_enable_breadcrumbs' => '1', … … 33 44 'wcb_home_url' => esc_url( home_url( '/' ) ) 34 45 ); 35 36 add_action( 'admin_menu', array( $this, 'wcb_create_menu_option' ) );37 add_action( 'admin_init', array( $this, 'wcb_admin_init' ) );38 add_action( 'init', array( $this, 'wcb_init' ) );39 add_filter( 'plugin_action_links', array( $this, 'wcb_add_settings_link'), 10, 2);40 add_action( 'head', 'woocommerce_breadcrumb', 20, 0);41 42 46 } 43 47 -
woocommerce-breadcrumbs/trunk/readme.txt
r3184163 r3270932 4 4 Tags: ecommerce, e-commerce, commerce, woocommerce, breadcrumbs 5 5 Requires at least: 4.6 6 Tested up to: 6. 77 Stable tag: 1. 1.06 Tested up to: 6.8 7 Stable tag: 1.2.0 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 66 66 == Changelog == 67 67 68 = 1.2.0 = 69 - Fixed issue with text domain loading notice 70 - Updated WC Tested tags 71 68 72 = 1.1.0 = 69 73 - Declare compatibility with WooCommerce HPOS -
woocommerce-breadcrumbs/trunk/woocommerce-breadcrumbs.php
r3184163 r3270932 4 4 Plugin URI: http://maddisondesigns.com/woocommerce-breadcrumbs 5 5 Description: A simple plugin to style the WooCommerce Breadcrumbs or disable them altogether 6 Version: 1. 1.06 Version: 1.2.0 7 7 WC requires at least: 2.6 8 WC tested up to: 9. 38 WC tested up to: 9.8 9 9 Author: Anthony Hortin 10 10 Author URI: http://maddisondesigns.com … … 22 22 23 23 public function __construct() { 24 24 add_action( 'init', array( $this, 'wcb_setup_defaults' ) ); 25 add_action( 'admin_menu', array( $this, 'wcb_create_menu_option' ) ); 26 add_action( 'admin_init', array( $this, 'wcb_admin_init' ) ); 27 add_action( 'init', array( $this, 'wcb_init' ) ); 28 add_filter( 'plugin_action_links', array( $this, 'wcb_add_settings_link'), 10, 2); 29 add_action( 'head', 'woocommerce_breadcrumb', 20, 0); 30 } 31 32 /** 33 * Setup breadcrumb defaults on init hook to ensure translation functions aren't called too early 34 */ 35 public function wcb_setup_defaults() { 25 36 $this->breadcrumb_defaults = array( 26 37 'wcb_enable_breadcrumbs' => '1', … … 33 44 'wcb_home_url' => esc_url( home_url( '/' ) ) 34 45 ); 35 36 add_action( 'admin_menu', array( $this, 'wcb_create_menu_option' ) );37 add_action( 'admin_init', array( $this, 'wcb_admin_init' ) );38 add_action( 'init', array( $this, 'wcb_init' ) );39 add_filter( 'plugin_action_links', array( $this, 'wcb_add_settings_link'), 10, 2);40 add_action( 'head', 'woocommerce_breadcrumb', 20, 0);41 42 46 } 43 47
Note: See TracChangeset
for help on using the changeset viewer.