Show Posts


Messages - abantecart

Pages: 1 ... 173 174 [175] 176 177 ... 203
2611
Support / Re: Image/Photos Order
« on: February 17, 2013, 03:13:21 PM »
Yes.

You go to product edit -> media tab
Click on any product image to open resource library window
Click on the tab with product name to display all images for this product.
Now you will see images with option for sorting, set and save with button at the top.

See image attached.

2612
You can add content pages to the menu. Go to design -> menu section.
You can create sub menu with your pages as well.

In addition, you can create HTML block and add link to your pages with simple HTML

2613
General Support / Re: How to modify order detail form?
« on: February 17, 2013, 02:56:59 PM »
I assume question is addressed to order history/invoice section of the storefront.

You need to edit this file:
/storefront/view/default/template/pages/account/invoice.tpl

Locate code:

Code: [Select]
    <div class="content">
      <table width="536">
        <tr>
          <th align="left"><?php echo $text_product?></th>
          <th align="left"><?php echo $text_model?></th>
          <th align="right"><?php echo $text_quantity?></th>
          <th align="right"><?php echo $text_price?></th>
          <th align="right"><?php echo $text_total?></th>
        </tr>
        <?php foreach ($products as $product) { ?>
        <tr>
          <td align="left" valign="top"><a href="<?php echo str_replace('%ID%'$product['id'], $product_link?>"><?php echo $product['name']; ?></a>
            <?php foreach ($product['option'] as $option) { ?>
            <br />
            &nbsp;<small> - <?php echo $option['name']; ?> <?php echo $option['value']; ?></small>
            <?php ?></td>
          <td align="left" valign="top"><?php echo $product['model']; ?></td>
          <td align="right" valign="top"><?php echo $product['quantity']; ?></td>
          <td align="right" valign="top"><?php echo $product['price']; ?></td>
          <td align="right" valign="top"><?php echo $product['total']; ?></td>
        </tr>
        <?php ?>
      </table>
      <br />
      <div style="width: 100%; display: inline-block;">
        <table style="float: right; display: inline-block;">
          <?php foreach ($totals as $total) { ?>
          <tr>
            <td align="right"><?php echo $total['title']; ?></td>
            <td align="right"><?php echo $total['text']; ?></td>
          </tr>
          <?php ?>
        </table>
      </div>
    </div>

Remove th and td for model and set fixed width for product name

2614
Security / Light cross-site scripting vulnerability fix
« on: February 16, 2013, 02:55:47 PM »
Light cross-site scripting vulnerability has been detected in AbanteCart.
Detected vulnerability does not cause any harm to AbanteCart or content.
To fix the problem, please read below.

Effected versions: Up to 1.1.3

About Risk:  This is a low risk cross-site scripting vulnerability. Not potential harm to code, database or server structure.

About the fix:
Fix is only 1 file that can be replaces or change manually
Option 1 (version 1.1.3):
Locate file: /core/engine/html.php  and replace with attached file

Option 2 (prior to version 1.1.3)
Locate and open file: /core/engine/html.php    
Locate  below code (about line # 114)

Code: [Select]
public function removeQueryVar($url, $vars) {
list($url_part, $q_part) = explode('?', $url);
parse_str($q_part, $q_vars);
if (!is_array($vars)) {
$vars = array( $vars );
}
foreach ($vars as $v)
unset($q_vars[ $v ]);

$new_qs = urldecode(http_build_query($q_vars));
return $url_part . '?' . $new_qs;
}

Replace with below code:

Code: [Select]
public function removeQueryVar($url, $vars) {
list($url_part, $q_part) = explode('?', $url);
parse_str($q_part, $q_vars);
if (!is_array($vars)) {
$vars = array( $vars );
}
foreach ($vars as $v)
unset($q_vars[ $v ]);

foreach ($q_vars as $key => $value)
$q_vars[$key] = $this->request->clean($value);

$new_qs = urldecode(http_build_query($q_vars));
return $url_part . '?' . $new_qs;
}

This issue is toughly addressed and eliminated in coming version of AbanteCart

2615
Configuration / Re: is there any EPAY payment module for AbanteCart Cart
« on: February 16, 2013, 02:48:58 PM »
Sorry about that. eway, epay, ebay :) all sound the same.

Unfortunately, we do not have ePay payment. I am sure it will be done at some point.

2616
Configuration / Re: is there any EPAY payment module for AbanteCart Cart
« on: February 16, 2013, 07:05:03 AM »
Yes.

1. You can install it from admin -> extensions -> extension store

2. Download here:  http://www.abantecart.com/abantecart-extension-categories/79-payment-methods/101-eway-payment

Or simply paste below URL into install extension (upload) section

http://www.abantecart.com/attachments/article/101/ac_eway_v1.0.tar.gz


2617
Support / Re: 2 critial error after installing Template2
« on: February 13, 2013, 05:57:47 PM »

2618
New Features Discussion / Re: Indonesian Language Suggestion
« on: February 12, 2013, 02:24:49 AM »
We can create Indonesian language extension based on Google auto translation and send to you.

You can validate and correct translation and set locale setting 

Once it is tested we will add to the list of extensions

If you can do this, let us know.

2619
Template Support / Re: email alerts for when customers create an account
« on: February 12, 2013, 02:20:28 AM »
Noted. We will consider this for an extension to manage messages and notifications.

Thank you.

2620
This template has 2 additional extensions that are listed on the bottom. See image attached.

They need to be enabled.
There is a fix for this that we work on that will be available soon, and in v 1.1.4

2621
What version of AbanteCart do you have?


2622
Fresh Installation / Re: Stuck in Installion Loop
« on: February 10, 2013, 03:57:10 PM »
Would be interesting to know what in PHP does not let you through. Anyway we can debug on your server?

2623
Fresh Installation / Re: Stuck in Installion Loop
« on: February 10, 2013, 08:12:32 AM »
Do you get any error on the screen?

Please also check this file system/logs/error.txt
If there is any error in that file, please post that error.

2624
Tips and Tricks / Re: Left and Right side colors...
« on: February 07, 2013, 05:28:41 PM »
Hello from New Jersey :)

To change header colors on the blocks, you need to replace 3 images. See images attached
You can copy them to directory /storefront/view/default/image/

If you need to edit CSS it is in here:
/storefront/view/default/stylesheet/boxes.css

To add background image, you can edit:
/storefront/view/default/stylesheet/stylesheet.css
Look for:
Code: [Select]
body {
    background: none repeat scroll 0 0 #FFFFFF;
    color: #000000;
    font: 11px Tahoma,Arial,Helvetica;
    margin: 0;
    padding: 0;
}

2625
Support / Re: The product images can not be enlarged when I click on it.
« on: February 06, 2013, 03:23:50 AM »
I checked couple products and images do open larger.
You will not see images larger if you have initially loaded small image (smaller than thumb nail size)

Pages: 1 ... 173 174 [175] 176 177 ... 203

Powered by SMFPacks Social Login Mod