Changeset 2444749
- Timestamp:
- 12/23/2020 05:12:13 AM (5 years ago)
- Location:
- woo-tabs
- Files:
-
- 4 edited
- 1 copied
-
tags/2.0 (copied) (copied from woo-tabs/trunk)
-
tags/2.0/Index.php (modified) (2 diffs)
-
tags/2.0/readme.txt (modified) (3 diffs)
-
trunk/Index.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woo-tabs/tags/2.0/Index.php
r2444394 r2444749 1 1 <?php 2 2 /* 3 Plugin Name:Woo Custom Tabs 4 Plugin URI: 5 Description: A plugin to add tabs for Product in WooCommerce 6 Version: 1.0 7 Author: Clarion Technolologies, Ganesh Paygude 3 * Plugin Name:Woo Custom Tabs 4 * Plugin URI: https://wordpress.org/plugins/woo-tabs 5 * Description: A plugin to add tabs for Product in WooCommerce 6 * Version: 2.0 7 * Author: Clarion Technologies 8 * Author URI: https://www.clariontech.com/ 9 * Text Domain: woo-tabs 10 */ 11 12 /* 13 This program is free software; you can redistribute it and/or 14 modify it under the terms of the GNU General Public License 15 as published by the Clarion Technologies; either version 2 16 of the License, or (at your option) any later version. 17 18 You should have received a copy of the GNU General Public License 19 along with this program; if not, write to the Clarion Technologies. 20 21 Copyright 2005-2020 Clarion Technologies. 22 */ 8 23 9 24 /* Setup the plugin. */ … … 196 211 echo apply_filters('woo_tab_content',$tab['content'],$tab,$key); 197 212 } 213 214 function woo_tabs_load_plugin_textdomain() { 215 load_plugin_textdomain( 'woo-tabs', FALSE, basename( dirname( __FILE__ ) ) . '/languages/' ); 216 } 217 add_action( 'plugins_loaded', 'woo_tabs_load_plugin_textdomain' ); -
woo-tabs/tags/2.0/readme.txt
r2444394 r2444749 1 1 === WOO Tabs === 2 Contributors: ganeshpaygude,clarionwpdeveloper , yogeshdalavi2 Contributors: ganeshpaygude,clarionwpdeveloper 3 3 Tags: Woocommerce 4 Requires at least: 3.25 Tested up to: 4.9.36 Stable tag: 1.04 Requires at least: 4.9 5 Tested up to: 5.6 6 Stable tag: 2.0 7 7 License: GPLv2 8 8 … … 12 12 == Description == 13 13 14 Woo Tabs allow you to add your custom tab for product info on product details page .14 Woo Tabs allow you to add your custom tab for product info on product details page of Woocommerce. 15 15 16 16 Major features in Woo-Tabs include: … … 39 39 == Changelog == 40 40 41 = 2.0 = 42 Loads a plugin’s translated validation meesage. 43 Version Upgrade and tested compatibility with latest stable versions. 44 41 45 = 1.0 = 42 46 * current version 1.0 -
woo-tabs/trunk/Index.php
r2444394 r2444749 1 1 <?php 2 2 /* 3 Plugin Name:Woo Custom Tabs 4 Plugin URI: 5 Description: A plugin to add tabs for Product in WooCommerce 6 Version: 1.0 7 Author: Clarion Technolologies, Ganesh Paygude 3 * Plugin Name:Woo Custom Tabs 4 * Plugin URI: https://wordpress.org/plugins/woo-tabs 5 * Description: A plugin to add tabs for Product in WooCommerce 6 * Version: 2.0 7 * Author: Clarion Technologies 8 * Author URI: https://www.clariontech.com/ 9 * Text Domain: woo-tabs 10 */ 11 12 /* 13 This program is free software; you can redistribute it and/or 14 modify it under the terms of the GNU General Public License 15 as published by the Clarion Technologies; either version 2 16 of the License, or (at your option) any later version. 17 18 You should have received a copy of the GNU General Public License 19 along with this program; if not, write to the Clarion Technologies. 20 21 Copyright 2005-2020 Clarion Technologies. 22 */ 8 23 9 24 /* Setup the plugin. */ … … 196 211 echo apply_filters('woo_tab_content',$tab['content'],$tab,$key); 197 212 } 213 214 function woo_tabs_load_plugin_textdomain() { 215 load_plugin_textdomain( 'woo-tabs', FALSE, basename( dirname( __FILE__ ) ) . '/languages/' ); 216 } 217 add_action( 'plugins_loaded', 'woo_tabs_load_plugin_textdomain' ); -
woo-tabs/trunk/readme.txt
r2444394 r2444749 1 1 === WOO Tabs === 2 Contributors: ganeshpaygude,clarionwpdeveloper , yogeshdalavi2 Contributors: ganeshpaygude,clarionwpdeveloper 3 3 Tags: Woocommerce 4 Requires at least: 3.25 Tested up to: 4.9.36 Stable tag: 1.04 Requires at least: 4.9 5 Tested up to: 5.6 6 Stable tag: 2.0 7 7 License: GPLv2 8 8 … … 12 12 == Description == 13 13 14 Woo Tabs allow you to add your custom tab for product info on product details page .14 Woo Tabs allow you to add your custom tab for product info on product details page of Woocommerce. 15 15 16 16 Major features in Woo-Tabs include: … … 39 39 == Changelog == 40 40 41 = 2.0 = 42 Loads a plugin’s translated validation meesage. 43 Version Upgrade and tested compatibility with latest stable versions. 44 41 45 = 1.0 = 42 46 * current version 1.0
Note: See TracChangeset
for help on using the changeset viewer.