Plugin Directory

Changeset 538264


Ignore:
Timestamp:
04/30/2012 06:04:06 PM (14 years ago)
Author:
splashingpixels.com
Message:
 
Location:
sp-wpec-variation-image-swap/trunk
Files:
6 added
4 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • sp-wpec-variation-image-swap/trunk/readme.txt

    r537527 r538264  
    55Requires at least: 3.0
    66Tested up to: 3.3.2
    7 Stable tag: 2.0
     7Stable tag: 2.0.1
    88
    99Plugin that adds product variation image swapping function to Wordpress e-Commerce plugin (WPEC). Requires 3.8+ of WPEC plugin.
     
    3535Check the checkbox in the sidebar widget that says "Disable Variation Image Swap". and click on Update/Save.  See screenshot 1
    3636
     37= I did everything but it is still not working! What gives!? =
     38
     39It 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
    3741== Screenshots ==
    3842
     
    4044
    4145== Changelog ==
     46
     47= 2.0.1 =
     48* Update - restructured the plugin folders
    4249
    4350= 2.0 =
  • sp-wpec-variation-image-swap/trunk/sp-wpec-variation-image-swap.php

    r537527 r538264  
    44Plugin URI: http://splashingpixels.com/category/plugins/sp-wpec-variation-image-swap
    55Description: Plugin that adds product variation image swapping function to Wordpress e-Commerce plugin (WPEC). Requires 3.8+ of WPEC plugin.
    6 Version: 2.0
     6Version: 2.0.1
    77Author: Roy Ho (Splashingpixels.com)
    88Author URI: http://splashingpixels.com
     
    2525*/
    2626
    27 require_once( 'class-core.php' );
    28 require_once( 'class-admin-ui.php' );
     27define( 'SP_SWAP_PLUGIN_URL', plugins_url( '', __FILE__ ) );
     28
     29require_once( plugin_dir_path( __FILE__ ) . 'includes/class-core.php' );
     30require_once( plugin_dir_path( __FILE__ ) . 'includes/class-admin-ui.php' );
     31
     32// instantiate the classes
    2933$swap_core = new SPswap();
    3034$swap_admin = new SPswapAdmin();
Note: See TracChangeset for help on using the changeset viewer.