Show Posts


Messages - abantecart

Pages: 1 ... 181 182 [183] 184 185 ... 202
2731
Installation and Configuration / Re: imports
« on: October 31, 2012, 01:04:00 PM »
You have to be clear with your questions and we will help you. You will not be annoyed any more.

This post is about import. Where do you import URL to?

2732
Installation and Configuration / Re: imports
« on: October 30, 2012, 09:13:25 PM »
Very few templates in the store, there may be more where to look?
I know Algozone is working on more new templates. You can check AbanteCart extension store or check with Algozone
There was some other site that started to work on templates, but unfortunately, I could not find the name.

2733
Installation and Configuration / Re: imports
« on: October 30, 2012, 05:04:40 PM »
The best example, is to do export of demo data first.  You can modify data and do import. We are still working on manuals for import export part.

2734
Tips and Tricks / Re: Import Products CSV
« on: October 29, 2012, 02:11:35 PM »
What version of abantecart you use?
When you do import, result page shows you number of record created/updated. What did you get?
You comment
Quote
and deleted all columns that I was not familiar
I am not sure if you deleted some important columns, like column that links product to category.

2735
General Support / Re: iPad Safari issue
« on: October 28, 2012, 09:31:11 PM »
There are 2 small bugs that came up related to languages.
If you get error page or can not setup default non-eglish language you need to do below update of the file

NOTE: This will be fixed with next version 1.1.2

Update steps:
replace file core/lib/language.php with attached


2736
Configuration / Re: Russian language
« on: October 28, 2012, 06:06:03 PM »
I just discovered small bug in case if only 1 non English language is available. It was fixed in next version 1.1.2

For version 1.1.1 you can fix it in file public_html/core/lib/language.php

Open file and locate line #181. It reads:
Code: [Select]
foreach ( $this->available_languages as $lng ) {
$languages[ $lng['code'] ] = $lng;
}
Replace with:
Code: [Select]
foreach ( $this->getActiveLanguages() as $lng ) {
$languages[ $lng['code'] ] = $lng;
}

also replace method getActiveLanguages()

by this

Code: [Select]
public function getActiveLanguages() {
        $active_languages = array();
        foreach ($this->available_languages as $result) {
            if ($result['status'] == 1) {
                $active_languages[] =  array(
                    'language_id'   => $result['language_id'],
                    'name'  => $result['name'],
                    'filename'  => $result['filename'],
                    'code'  => $result['code'],
                    'image' => $result['image']
                );
            }
        }
        return $active_languages;
    }


2737
Extension Support / Re: Template by extension
« on: October 26, 2012, 11:36:46 AM »
If you do minor changes in the default template, you do not need to create an extension with the template. Just keep in mind that updates might effect your template files. We try to keep minimum effect on the templates in upgrades, but there is always a chance that there will be a fix in the template files.

If you intend to create completely custom template, we suggest you create an extension. This is a developers job. If you are not developer, this is not for you.

2738
General Support / Re: upload audio and video
« on: October 25, 2012, 01:20:15 PM »
You need to create a Data listing block.

These are the steps
1. Go to Home :: Blocks :: Create block
2. Select Data listing
3. Select media and media type to show. Enter other data you need.
4. Save
5. Go to layout for product details page Design -> layouts
6. Locate where you want block to show, select block.
7. save

NOTE: Now storefront will show this block only if there is any media of this type available for given product
Same applies to categories


2739
General Support / Re: Guest Account
« on: October 25, 2012, 01:11:14 PM »
Thank you David for clarification.

2740
General Support / Re: Guest Account
« on: October 25, 2012, 08:34:49 AM »
Customer area is a customer account pages. These are pages to access account information, order and change details. If you try to access these pages directly, you will see log in or register page and no Guest Account option.

2741
General Support / Re: Text Change
« on: October 24, 2012, 11:06:15 AM »
You have 2 options, so use what is easier for you:
1. There is a Search Everywhere top right of admin.
Type in there word model and wait for auto suggest or hit enter (search) to get full list
look for the result for product_product and storefront. Click and edit.
 
2. Go to System -> Localization -> Language Definitions
Type model in Translation field of the grid and hit enter.
Filter result if you want and click edit.

NOTE: This is version 1.1 and later   

2742
General Support / Re: Guest Account
« on: October 24, 2012, 10:59:19 AM »
Did you do any edits?
NOTE: If you try to access customer area, there will be no Guest Account option.

2743
General Support / Re: iPad Safari issue
« on: October 23, 2012, 09:01:33 AM »
We will address this issue in the next release.

2744
Support / Re: I want to move to another web hosting. What should I do?
« on: October 23, 2012, 08:45:52 AM »
The simplest way to migrate are these:

1. Install new AbanteCart with normal process on the new host (do not load demo data)
NOTE: You need to select the same database prefix as on your current AbanteCart instance.
2. On existing AbanteCart instance, do backup of database, code and resource library (do not include config)
3. Download backup in the backup history
4. Load backup to newly installed AbanteCart.
5. You will need to replace salt key from your original installation into new configuration file. It is in system/config.php

DONE:

2745
Support / Re: Problem with contact us
« on: October 23, 2012, 08:18:44 AM »
Contact us form is based on flexy form concept that we have.  Unfortunately, we do not have interface in admin to change forms yet. This is currently in development and will be available as extension in 1-2 weeks

You can change language values directly in the tables ac_form_descriptions  and  ac_field_descriptions

If you want to clone missing values from any other language,  you can run clone tool under language edit page.

Pages: 1 ... 181 182 [183] 184 185 ... 202

Powered by SMFPacks Social Login Mod