Show Posts


Messages - abantecart

Pages: 1 ... 187 188 [189] 190 191 ... 202
2821
General Support / Re: Google Analytics
« on: September 06, 2012, 08:14:15 AM »
If you need add generic code (show on all pages) into storefront head you can do this 2 ways.

1. Add code to TPL file /storefront/view/default/template/common/head.tpl
This whole file is pulled into <head></head>

2. You can include child block or just code into controller /storefront/controller/common/head.php
This can be done by adding (concatenating) to variable $head

If you need to add some script or CSS to head in some specific page only, you can use addScript or addStyle in that page controller.
These methods will append your script or CSS to the head on on that page.
Example:
Code: [Select]
$this->document->addScript(RDIR_TEMPLATE . 'javascript/jqgrid/js/jquery.jqGrid.min.js');
Code: [Select]
           $this->document->addStyle(array(
                'href' => $this->view->templateResource('/javascript/jquery/star-rating/jquery.rating.css'),
                'rel' => 'stylesheet',
                'media' => 'screen',
            ));


2822
General Discussion / Re: Import / Export Design
« on: September 05, 2012, 04:29:41 PM »
There is a way to make CSV smaller. You can reduce number of related tables in your export request. In case on import, you can also do this in sets per table.

Number of fields also depends how many options use have for products and other attributes.

2823
General Support / Re: Multiple Store Question
« on: August 31, 2012, 11:14:43 PM »
Currently you can manage all stores in one single admin interface.

However, we do have plans to make admin management per store selected  as well as making abantecart multivendor solution


2824
General Discussion / Re: Problems
« on: August 31, 2012, 11:08:48 PM »
Please indicate where do you try to upload the image?

2825
General Support / Re: cannot access admin area
« on: August 30, 2012, 11:01:54 AM »
When you were installing AbanteCart there was a field that was asking for your admin section key.

See image attached.

If you did not edited it this field, admin section will be set to your_admin. It is not recommended to use this name
To access your admin you need to add s=your_admin to the URL
Example: demo.abantecart.com?s=demo_admin

You can locate your admin section key in configuration file located in system/config.php
Look for:
define('ADMIN_PATH', '.....




2826
General Discussion / Re: New and proud of it!
« on: August 30, 2012, 10:50:18 AM »
This forum is only in English.
Please clarify your question

2827
General Support / Re: Showing Length, Width, Height?
« on: August 27, 2012, 06:30:07 PM »
If you need PHP coding help. Please post code extract you have now

2828
General Discussion / Re: do nurkowania
« on: August 23, 2012, 11:46:27 AM »
Please indicate what post in particular you are addressing.

Thank you

2829
General Support / Re: Showing Length, Width, Height?
« on: August 22, 2012, 12:16:42 PM »
Yes,

You need to put conditional check around each display section in the same tpl file

Example:
Quote
<?php if ( $product_info['height'] ) { ?>
            <tr>
                  <td><b><?php echo "Height:"; ?></b></td>
                  <td><?php echo $product_info['height'] . "mm"; ?></td>
               </tr>
<?php } ?>

2830
Support / Re: Default sort order?
« on: August 22, 2012, 12:10:36 PM »
In the same spot, can you please change
'href'  => $this->html->getSEOURL('product/category', $url . '&path=' . $this->request->get['path'] . '&sort=p.sort_order&order=ASC', '&encode')
TO:
'href'  => $this->html->getSEOURL('product/category', $url . '&path=' . $this->request->get['path'] . '&sort=pd.name&order=ASC', '&encode')

Correct link should be this to force sort by name like below:
http://mylittlecrystalshop.com/shop/index.php?rt=product/category&path=4_25&sort=pd.name-ASC

This should fix default sorting, if not, let us know.

2831
Thank you for your help and effort to explain this.

I am working on this section now and I think it is all clear what needs to be done. We will be included in version 1.1 (next one).

2832
Languages and Zones / Re: Backward compatible with the low version
« on: August 09, 2012, 08:24:06 AM »
All this happen probably because of manual install and missing files.
Install process is pretty simple actually. Dump extension directory in to extensions/  and follow install in the admin. You will see new extension in the list

To make it even simpler, use extension store (marketplace) to install extension with provided key. Many extensions are free there. Just copy/paste the key and AbanteCart will do all the work of downloading and installing extension for you.

I am sorry you have to go through this.

2833
Template Support / Re: Changing Colors
« on: August 09, 2012, 08:18:28 AM »
You can locate CSS files for default template in this path:

public_html/storefront/view/default/stylesheet/

2834
Glad it worked.

2835
Support / Re: Default sort order?
« on: August 06, 2012, 09:42:19 AM »
You can change the sorting pram to be defaulted to A-Z

Look in file:
storefront/controller/pages/product/category.php

Locate this code:
Quote
            $sorts[] = array(
               'text'  => $this->language->get('text_default'),
               'value' => 'p.sort_order-ASC',
               'href'  => $this->html->getSEOURL('product/category', $url . '&path=' . $this->request->get['path'] . '&sort=p.sort_order&order=ASC', '&encode')
            );

Switch it with next line.

Pages: 1 ... 187 188 [189] 190 191 ... 202

Powered by SMFPacks Social Login Mod