Changeset 701503
- Timestamp:
- 04/22/2013 11:34:59 AM (13 years ago)
- Location:
- shopp-variants-sku
- Files:
-
- 2 edited
-
tags/1.0.2/readme.txt (modified) (4 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
shopp-variants-sku/tags/1.0.2/readme.txt
r698744 r701503 5 5 Requires at least: 3.0.1 6 6 Tested up to: 3.5.1 7 Stable tag: 1.0. 27 Stable tag: 1.0.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 21 21 == Changelog == 22 22 23 = 1.0.3 = 24 25 * Improve CSS and add echo/return 26 23 27 = 1.0.2 = 24 28 … … 35 39 == Upgrade Notice == 36 40 41 = 1.0.3 = 42 43 * Not important to upgrate to that version from 1.0.2 44 37 45 = 1.0.2 = 38 46 39 * Important to upgrate to that version from 1.0.1 or later47 * Important to upgrate to that version from 1.0.1 40 48 41 49 = 1.0.1 = … … 52 60 2. Activate the plugin through the 'Plugins' menu in WordPress 53 61 3. Add this code in the product loop where you want to see SKU: 54 <?php if(function_exists('am_shopp_variants_sku')) am_shopp_variants_sku(); ?> 62 <?php if(function_exists('am_shopp_variants_sku')) am_shopp_variants_sku(true); ?> 63 use true to echo the sku; 64 use false to return the sku: <?php if(function_exists('am_shopp_variants_sku')) $sku = am_shopp_variants_sku(false); ?> 55 65 56 == Frequently Asked Questions == 66 == Frequently Asked Questions == 57 67 58 68 = Can feature x be added? = -
shopp-variants-sku/trunk/readme.txt
r701026 r701503 61 61 3. Add this code in the product loop where you want to see SKU: 62 62 <?php if(function_exists('am_shopp_variants_sku')) am_shopp_variants_sku(true); ?> 63 64 use true - to echo the result 65 use false - to return the result <?php if(function_exists('am_shopp_variants_sku')) $sku = am_shopp_variants_sku(false); ?> 63 use true to echo the sku; 64 use false to return the sku: <?php if(function_exists('am_shopp_variants_sku')) $sku = am_shopp_variants_sku(false); ?> 66 65 67 66 == Frequently Asked Questions ==
Note: See TracChangeset
for help on using the changeset viewer.