Show Posts


Messages - abantecart

Pages: 1 ... 174 175 [176] 177 178 ... 202
2626
Extension Support / Re: how to upload the extension?
« on: February 01, 2013, 05:15:30 AM »
You can submit your extension on our site after you register.

http://www.abantecart.com/sign-in

Once we review and approve your extension, it will be available for everyone to download.

FYI:
We are working on new site for AbanteCart and this process will be easier.   

2627
Template Support / Re: email alerts for when customers create an account
« on: January 29, 2013, 03:50:49 PM »
This is not currently available by default.  This is more related to reporting rather than notification.
There is abandoned orders extension that is available in in admin-> extensions -> extension store 

2628
General Support / Re: Currency symbols
« on: January 29, 2013, 03:45:50 PM »
This is set in Admin Currencies -> Edit Currency - Euro
You can position symbol to right or left.
Euro already set to the right

2629
Support / Re: Tax not calculating correctly after 1.1.3 update
« on: January 29, 2013, 02:31:15 AM »
You did not follow instructions and messed up the code.   ;)
Use attached file to replace file on your cart.

2630
Support / Re: Tax not calculating correctly after 1.1.3 update
« on: January 28, 2013, 10:56:13 AM »
Problem is solved. There is a typo in the cart class. :(

Open this file /core/lib/cart.php

Locate line:
Code: [Select]
if (!isset($taxes[$product['tax_class_id']])) {
$this->taxes[$product['tax_class_id']]['total'] = $product['total'];
$this->taxes[$product['tax_class_id']]['tax'] = $this->tax->calcTotalTaxAmount($product['total'], $product['tax_class_id']);
Replace with:
Code: [Select]
if (!isset($this->taxes[$product['tax_class_id']])) {
$this->taxes[$product['tax_class_id']]['total'] = $product['total'];
$this->taxes[$product['tax_class_id']]['tax'] = $this->tax->calcTotalTaxAmount($product['total'], $product['tax_class_id']);

2631
Template Support / Re: Which files to edit....
« on: January 28, 2013, 06:52:33 AM »
Abolabo meant to say, you need to use admin interface to edit text. This is a unique feature in AbanteCart.

You can quickly locate  text using quick search at the top right corner of the admin and click to edit.

Watch this quick video to help you understand how it works:

2632
Support / Re: Tax not calculating correctly after 1.1.3 update
« on: January 28, 2013, 06:43:42 AM »
We are checking...

In 1.1.3 there are additional settings to control tax calculation. I wonder if there is something wrong in the tax and location. Do you have correct tax class sett for your products (the once that are not calculated right)?


2633
Template Support / Re: Default Template Auto Size Product Images
« on: January 28, 2013, 06:39:34 AM »
Image widths are set based on settings in admin -> system -> settings -> appearance.

If you want to remove this in the code you can edit following file for specials that are shown on the main page:
storefront/controller/pages/product/special.php

Edit following lines:
Code: [Select]
               $thumbnail = $resource->getMainThumb('products',
                                     $result['product_id'],
                                     $this->config->get('config_image_product_width'),
                                     $this->config->get('config_image_product_height'),true);


2634
General Support / Re: Fatal Error
« on: January 25, 2013, 04:15:54 AM »

2635
Support / Re: 2 critial error after installing Template2
« on: January 24, 2013, 08:01:38 AM »
What version of AbanteCart do you use?

2636
Feedback / Re: My opinions
« on: January 23, 2013, 07:52:33 AM »
This is not for 5.3 but for 5.2. Possibly you just did not have this library enabled or installed.

See manual
http://ua.php.net/manual/en/class.datetime.php

2637
Feedback / Re: My opinions
« on: January 23, 2013, 03:25:07 AM »
Thank you for your feedback. We will consider your comments in futures upodates

What makes you think we require PHP 5.3?
AbanteCart is still on PHP 5.2 min requirement

2638
New Features Discussion / MOVED: My opinions
« on: January 23, 2013, 03:04:00 AM »

2639
Tips and Tricks / Re: Changing background color, template 2.
« on: January 21, 2013, 04:14:26 PM »
Additional templates are working as extensions and all files related to template are located in extension or extensions/template2 in case of template 2

You can locate CSS file in: extensions/template2/storefront/view/template2/stylesheet/stylesheet.css

To edit background locate and edit:
Code: [Select]
body {
    background: none repeat scroll 0 0 #FFFFFF;
    color: #000000;
    font: 12px Tahoma,Arial,Helvetica;
    margin: 0;
    padding: 0;
}

2640
Support / Re: Shipping Rates by Total Price
« on: January 21, 2013, 03:57:27 PM »
Yes, we can help you with these approach and create price based shipping extension.

You can PM me to discuss details

Pages: 1 ... 174 175 [176] 177 178 ... 202

Powered by SMFPacks Social Login Mod