Plugin Directory

Changeset 886964


Ignore:
Timestamp:
04/03/2014 06:43:28 PM (12 years ago)
Author:
orillacart
Message:

Fix attribute price change bug.

Location:
orillacart/trunk
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • orillacart/trunk/com_shop/front/views/account/templates/order_receipt.tpl.php

    r879830 r886964  
    11<h1><?php _e('Order #', 'com_shop'); ?><?php echo (string) $this->order['ID']; ?></h1>
    22<p class=""><?php _e('Order Date:', 'com_shop'); ?> <?php echo $this->order['cdate']; ?></p>
     3<hr />
     4<p><?php _e('Order key: ', 'com_shop'); ?> <?php echo $this->order['post_password']; ?></p>
    35<hr />
    46
  • orillacart/trunk/com_shop/front/views/cart/templates/order_receipt.tpl.php

    r879830 r886964  
    11<h1><?php _e('Order #', 'com_shop'); ?><?php echo (string) $this->order['ID']; ?></h1>
    22<p class=""><?php _e('Order Date:', 'com_shop'); ?> <?php echo $this->order['cdate']; ?></p>
     3<hr />
     4<p><?php _e('Order key: ', 'com_shop'); ?> <?php echo $this->order['post_password']; ?></p>
    35<hr />
    46<div class="container-fluid">
  • orillacart/trunk/com_shop/front/views/mail/templates/admin_notify_mail.tpl.php

    r879830 r886964  
    3636                                    <tr>
    3737                                        <td><h2 style="font-size:18px; font-weight:normal; margin:0;"><?php _e("Your Order #", "com_shop"); ?><?php echo (string) $this->order['ID']; ?> <small>(<?php _e("placed on", "com_shop"); ?> <?php echo $this->order['cdate']; ?>)</small></h2></td>
     38                                    </tr>
     39                                    <tr>
     40                                        <td>
     41                                            <p><?php _e('Order key: ', 'com_shop'); ?> <?php echo $this->order['post_password']; ?></p>
     42                                        </td>
     43                                       
    3844                                    </tr>
    3945                                    <tr>
  • orillacart/trunk/com_shop/front/views/mail/templates/invoice_mail.tpl.php

    r879830 r886964  
    3636                                            <p style="font-size:12px; line-height:16px; margin:0;"><?php _e("Your order confirmation is below. Thank you again for your business.", "com_shop"); ?></p></td>
    3737                                    </tr>
     38                                   
    3839                                    <tr>
    3940                                        <td><h2 style="font-size:18px; font-weight:normal; margin:0;"><?php _e("Your Order #", "com_shop"); ?> <?php echo (string) $this->order['ID']; ?> <small>(<?php _e("placed on", "com_shop"); ?> <?php echo $this->order['cdate']; ?>)</small></h2></td>
     41                                    </tr>
     42                                     <tr>
     43                                        <td>
     44                                            <?php _e('Order key: ', 'com_shop'); ?> <?php echo $this->order['post_password']; ?>
     45                                        </td>
    4046                                    </tr>
    4147                                    <tr>
  • orillacart/trunk/com_shop/front/views/mail/templates/proccessing_mail.tpl.php

    r879830 r886964  
    4545                                    </tr>
    4646                                    <tr>
     47                                        <td>
     48                                            <?php _e('Order key: ', 'com_shop'); ?> <?php echo $this->order['post_password']; ?>
     49                                        </td>
     50                                    </tr>
     51                                    <tr>
    4752                                        <td><table width="650" cellspacing="0" cellpadding="0" border="0">
    4853                                                <thead>
  • orillacart/trunk/com_shop/front/views/mail/templates/refunded_mail.tpl.php

    r879830 r886964  
    3737                                    <tr>
    3838                                        <td><h2 style="font-size:18px; font-weight:normal; margin:0;"><?php _e("Your Order #", "com_shop"); ?><?php echo (string) $this->order['ID']; ?> <small>(<?php _e("placed on", "com_shop"); ?> <?php echo $this->order['cdate']; ?>)</small></h2></td>
     39                                    </tr>
     40                                     <tr>
     41                                        <td>
     42                                            <?php _e('Order key: ', 'com_shop'); ?> <?php echo $this->order['post_password']; ?>
     43                                        </td>
    3944                                    </tr>
    4045                                    <tr>
  • orillacart/trunk/com_shop/front/views/product/templates/product_data.tpl.php

    r879830 r886964  
    1010
    1111    <?php if ($this->row->price->raw_price < $this->row->price->base) { ?>
    12         <div class="oldPriceContainer">
     12        <div id="oldPriceContainer" class="oldPriceContainer">
    1313            <span class="oldPriceTitle"><?php _e("Regular price: ", "com_shop"); ?></span>
    1414            <span class="old_price ">
     
    2323            <span class="priceTitle"><?php _e("Price: "); ?></span>
    2424        <?php endif; ?>
    25         <span class="price <?php if ($this->row->price->raw_price < $this->row->price->base) echo 'product_has_discount'; ?>">
     25        <span id="price_container" class="price <?php if ($this->row->price->raw_price < $this->row->price->base) echo 'product_has_discount'; ?>">
    2626            <?php echo $this->row->price->price_formated; ?>
    2727        </span>
  • orillacart/trunk/com_shop/front/views/product/templates/view_product_details.tpl.php

    r879830 r886964  
    22    <form role="form" onsubmit="" action='<?php echo Route::get("component=shop&con=cart"); ?>' method="post" id="product_addtocart_form">
    33
    4         <div clas="row">
     4        <div class="row">
    55            <div class="col-xs-12 col-md-8">
    66                <div id="product_gallery">
  • orillacart/trunk/main.php

    r883833 r886964  
    33/*
    44  Plugin Name: OrillaCart
    5   Version: 1.1.2
     5  Version: 1.1.3
    66  Description: ecommerce solution for WordPress
    77  Plugin URI: http://orillacart.com
     
    1414
    1515define('_VALID_EXEC', 1);
    16 define('DS', "/");
     16defined("DS") or define('DS', "/");
    1717define("ORILLA_FRAMEWORK_BASE",realpath(dirname(__FILE__)));
    1818define("ORILLA_FRAMEWORK_CORE",realpath(dirname(__FILE__).DS."core"));
    19 define("ORILLACART_VERSION","1.1.2");
     19define("ORILLACART_VERSION","1.1.3");
    2020
    2121define("ORILLA_FRAMEWORK_PUBLIC_KEY",realpath(dirname(__FILE__).DS."core".DS."public_key".DS."orillacart.pub"));
  • orillacart/trunk/readme.txt

    r879830 r886964  
    8585
    8686== Changelog ==
     87== 1.1.3 - 03.04.2014 ==
     881. Attribute price bugfix.
    8789
    8890= 1.1.0 - 22.03.2014 =
Note: See TracChangeset for help on using the changeset viewer.