Show Posts


Messages - abantecart

Pages: 1 ... 172 173 [174] 175 176 ... 202
2596
General Support / Re: Latest Products Not Showing Items I Have Imported
« on: February 23, 2013, 03:43:25 PM »
Check date_added on products that you import. This date needs to be greater that other product to be shown in latest list.

2597
Hi. The links that were created using content manager will not open my pages?
Even the About Us page....
 It just goes to the home page when clicked on.  ???
I am using the SEO urls...any way I can make it work? Thanks so much.

Need more details of your set up.

2598
Templates / Re: Removing Storefront Top Sub Menu
« on: February 22, 2013, 09:20:06 AM »
If you need to add link, you can do this 2 ways.

1. Use variable with the code that you created, but you need to add value to in in the controller.
in the template /storefront/view/default/template/common/header.tp:

Code: [Select]
<li><a href="<?php echo $account?>"><?php echo $text_account?></a></li>

in controller /storefront/controller/common/header.php:
Add:

Code: [Select]
$this->data['text_account'] = $this->language->get('text_account');
$this->data['account'] = $this->html->getURL('account/account');

2. Add relative portion of URL to the template (lazy way :) )
Code: [Select]
<li><a href="/index.php?rt=account/account">My Account</a></li>

FYI. For blue menu above, you can add link using admin -> menu without any code changes.

2599
General Discussion / Re: Installation on exisitng site
« on: February 22, 2013, 05:42:12 AM »
Do you have another cart now that you want to replace or you adding new cart to your site?

2600
Templates / Re: Removing Top Menu
« on: February 19, 2013, 04:27:16 AM »
This is in the template file: storefront/view/default/template/common/header.tpl

Look at these lines:

Code: [Select]
          <li><a href="<?php echo $special?>" class="special"><?php echo $text_special?></a></li>
          <li class="nav_sep">&nbsp;</li>
          <li><a onclick="bookmark(document.location, '<?php echo addslashes($title); ?>');" class="bookmark"><?php echo $text_bookmark?></a></li>
          <li class="nav_sep">&nbsp;</li>
          <li><a href="<?php echo $contact?>" class="contact"><?php echo $text_contact?></a></li>
          <li class="nav_sep">&nbsp;</li>
          <li><a href="<?php echo $sitemap?>" class="sitemap"><?php echo $text_sitemap?></a></li>

2601
Templates / Re: Deleting Resource Library
« on: February 19, 2013, 04:24:26 AM »
There is a facility to select multiple resource library items and delete.
In addition, you can reinstall AbatneCart with NO demo data.

2602
Feedback on My Store / Re: Just Wanted To Say Thanks!
« on: February 18, 2013, 10:12:57 AM »
Thank you for your comments and positive feed back. Feel free to pass your positive experience outside and spread good words.  ;)

2603
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.

2604
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

2605
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

2606
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

2607
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.

2608
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


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

2610
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.

Pages: 1 ... 172 173 [174] 175 176 ... 202

Powered by SMFPacks Social Login Mod