Changeset 538264
- Timestamp:
- 04/30/2012 06:04:06 PM (14 years ago)
- Location:
- sp-wpec-variation-image-swap/trunk
- Files:
-
- 6 added
- 4 deleted
- 2 edited
-
class-admin-ui.php (deleted)
-
class-core.php (deleted)
-
includes (added)
-
includes/class-admin-ui.php (added)
-
includes/class-core.php (added)
-
includes/thumb.php (added)
-
js (added)
-
js/sp-wpec-variation-image-swap.js (added)
-
readme.txt (modified) (3 diffs)
-
sp-wpec-variation-image-swap.js (deleted)
-
sp-wpec-variation-image-swap.php (modified) (2 diffs)
-
thumb.php (deleted)
Legend:
- Unmodified
- Added
- Removed
-
sp-wpec-variation-image-swap/trunk/readme.txt
r537527 r538264 5 5 Requires at least: 3.0 6 6 Tested up to: 3.3.2 7 Stable tag: 2.0 7 Stable tag: 2.0.1 8 8 9 9 Plugin that adds product variation image swapping function to Wordpress e-Commerce plugin (WPEC). Requires 3.8+ of WPEC plugin. … … 35 35 Check the checkbox in the sidebar widget that says "Disable Variation Image Swap". and click on Update/Save. See screenshot 1 36 36 37 = I did everything but it is still not working! What gives!? = 38 39 It is possible the theme you're using is not compatible with the plugin if the theme has changed any class/id names on certain containers. To know for sure, switch to 2011 default Wordpress theme and re-test. 40 37 41 == Screenshots == 38 42 … … 40 44 41 45 == Changelog == 46 47 = 2.0.1 = 48 * Update - restructured the plugin folders 42 49 43 50 = 2.0 = -
sp-wpec-variation-image-swap/trunk/sp-wpec-variation-image-swap.php
r537527 r538264 4 4 Plugin URI: http://splashingpixels.com/category/plugins/sp-wpec-variation-image-swap 5 5 Description: Plugin that adds product variation image swapping function to Wordpress e-Commerce plugin (WPEC). Requires 3.8+ of WPEC plugin. 6 Version: 2.0 6 Version: 2.0.1 7 7 Author: Roy Ho (Splashingpixels.com) 8 8 Author URI: http://splashingpixels.com … … 25 25 */ 26 26 27 require_once( 'class-core.php' ); 28 require_once( 'class-admin-ui.php' ); 27 define( 'SP_SWAP_PLUGIN_URL', plugins_url( '', __FILE__ ) ); 28 29 require_once( plugin_dir_path( __FILE__ ) . 'includes/class-core.php' ); 30 require_once( plugin_dir_path( __FILE__ ) . 'includes/class-admin-ui.php' ); 31 32 // instantiate the classes 29 33 $swap_core = new SPswap(); 30 34 $swap_admin = new SPswapAdmin();
Note: See TracChangeset
for help on using the changeset viewer.