Plugin Directory

Changeset 198151


Ignore:
Timestamp:
01/26/2010 01:36:23 AM (16 years ago)
Author:
jghazally
Message:

fixed grid view normal price vs sales price issue, added lee willis shipping hook, slight changes to user.js custom gateway table

Location:
wp-e-commerce/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wp-e-commerce/trunk/js/user.js

    r177319 r198151  
    546546        jQuery("input.custom_gateway").change(
    547547            function() {
    548                 if(jQuery(this).attr('checked') == true) {
     548                if(jQuery(this).attr('checked') == 'checked') {
    549549                    parent_div = jQuery(this).parents("div.custom_gateway");
    550550                    jQuery('table input',parent_div).attr( 'disabled', false);
  • wp-e-commerce/trunk/themes/iShop/grid_view.php

    r177580 r198151  
    108108                           
    109109                            <br/>
    110                             <span class="pricedisplay"><?php echo wpsc_product_normal_price(); ?></span>Price:
     110                            <span class="pricedisplay"><?php echo wpsc_the_product_price(); ?></span>Price:
    111111                           
    112112                        <?php if(get_option('display_moredetails') == 1) : ?>
  • wp-e-commerce/trunk/themes/marketplace/grid_view.php

    r177580 r198151  
    108108                           
    109109                            <br/>
    110                             <span class="pricedisplay"><?php echo wpsc_product_normal_price(); ?></span>Price:
     110                            <span class="pricedisplay"><?php echo wpsc_the_product_price(); ?></span>Price:
    111111                           
    112112                        <?php if(get_option('display_moredetails') == 1) : ?>
  • wp-e-commerce/trunk/wp-shopping-cart.php

    r196545 r198151  
    281281 * and ends here
    282282 */
     283 
    283284// include shipping modules here.
    284285$shipping_directory = WPSC_FILE_PATH.'/shipping';
     
    289290    }
    290291}
     292$wpsc_shipping_modules = apply_filters('wpsc_shipping_modules',$wpsc_shipping_modules);
    291293
    292294// if the gold cart file is present, include it, this must be done before the admin file is included
Note: See TracChangeset for help on using the changeset viewer.