Show Posts


Messages - abantecart

Pages: 1 ... 176 177 [178] 179 180 ... 202
2656
Built-in Features / Re: Multiple Checkout...
« on: January 07, 2013, 01:16:54 PM »
It would be a good feature I think to allow payment split in multiple processors. Something to consider. 

2657
Configuration / Re: Changing search bar menu?
« on: January 07, 2013, 05:27:13 AM »
Add below example code to: /storefront/view/default/stylesheet/stylesheet.css

Code: [Select]
#info_links .home {
background: url('../image/home.png') 0 50% no-repeat;
}

You need to add icon to image directory   :P

2658
Configuration / Re: How do I export to a csv instead of a .targz?
« on: January 04, 2013, 06:26:20 AM »
This is a standard format of archiving and zipping. You can open this archive with windows or any other operating system

http://superuser.com/questions/215629/how-to-open-a-tar-gz-file-in-windows


2659
Support / Re: Admin Page
« on: January 04, 2013, 06:22:47 AM »
You can always find this in your configuration file on your server.

/system/config.php

Look for define('ADMIN_PATH', 'xxxxxxx');

2660
Templates / Re: Custom Template
« on: January 03, 2013, 10:57:21 AM »
Can you please post the screenshot with what you try to do?

2661
Support / Re: Admin Page
« on: January 02, 2013, 08:59:22 PM »
Good idea. :)

Keep your admin URL safe.

2662
Templates / Re: Custom Template
« on: January 02, 2013, 08:57:46 PM »
Not quite clear what you try to do. Do you need to add image?

2663
Thank you for your comments. We will consider all your feedback and improve AbanteCart to accommodate more varieties of business requirements.

2664
General Support / Re: Layout
« on: January 02, 2013, 08:08:19 AM »
Yes, but you need to edit template file or style sheet

1. You can edit /storefront/view/default/stylesheet/stylesheet.css to add more width:
Code: [Select]
#content .product_options {
    float: right;
    margin: -10px -8px -2px 0;
    width: 210px;
}
Change 210px to something bigger

2. You can change location of div with product_options class below middle_content div
Look into file: /storefront/view/default/template/pages/product/product.tpl

2665
Yes, but it takes time. New domains are not picked up fast.

2666
General Support / Re: show a payment method if...
« on: January 02, 2013, 07:52:44 AM »
Unfortunately, there is no relationship between shipping and payment in the settings. This has to be custom programmed.

You can check controller that process display for payment to add logic /storefront/controller/pages/checkout/payment.php

We are considering to add something that will help in this configuration.

2667
Template Support / Re: Manufacturer logo on product page?
« on: January 01, 2013, 11:04:29 PM »
There are number of ways you can do this.

1. You can create a custom block with manufacture selected or media block with image(icon) of manufacturer.
You would need to create this for every manufacturer and add proper block to each product's layout 
This is pain if you have too many manufacturers and products.

2. You can change code to add manufacturer icon on product details page (middle section).

Change the following 2 files:
Controller: /storefront/controller/pages/product/product.php
about line 291after:
Code: [Select]
$this->data['product_id'] = $product_id;
$this->data['average'] = $average;
Add
Code: [Select]
$resource = new AResource('image');
$thumbnail = $resource->getMainThumb('manufacturers',
$product_info['manufacturer_id'],
$this->config->get('config_image_grid_width'),
$this->config->get('config_image_grid_height'),
true);
$this->data['manufacturer_icon'] = $thumbnail['thumb_url'];

and 
Template: /storefront/view/default/template/pages/product/product.tpl
About line 166:
Code: [Select]
<a href="<?php echo $manufacturers?>"><?php echo $manufacturer?></a>Replace with:
Code: [Select]
<a href="<?php echo $manufacturers?>"><img src="<?php echo $manufacturer_icon?>" border="0" title="<?php echo $manufacturer?>" /></a>
3. You can change manufacturer static block to show manufacturer icon if in product detail page. You need to add manufactures block to generic product details layout one time.
These has been added to version 1.1.3 but you can copy below files to your abantecart:
https://github.com/abantecart/abantecart-src/blob/2ca3dc68fe2c6e9ef8b48582470f18b2102cbfb1/public_html/storefront/controller/blocks/manufacturer.php
https://github.com/abantecart/abantecart-src/blob/2ca3dc68fe2c6e9ef8b48582470f18b2102cbfb1/public_html/storefront/view/default/template/blocks/manufacturer.tpl


2668
General Support / Re: Display payment options
« on: December 29, 2012, 08:06:03 PM »
Yes. You can create a custom block with HTML or just image and show it on any page and location you need.

- Go to Design -> Blocks and click new icon (+) at the top right corner of content area
- Select HTML type of block and fill all the details you need and add image in "Custom Block content "
- save
- Now go to Design -> Layouts and add your new HTML block to any place you want on the page you want.

As alternative, you can create data listing block with only 1 image selected from resource library (Paypal logo in your case) and add this to the page you need in the layout.

Done.

2669
General Discussion / Re: Minimum total price order by Category
« on: December 29, 2012, 07:33:40 PM »
Unfortunately, we do not have something what you describe. We have minimal for the product qtty.

Is this a good idea to limit order amount? I wounder how popular this feature is and important to be part of the core

This can be achieved with creating extension.

2670
General Support / Re: adding products to differant categories
« on: December 28, 2012, 11:08:50 PM »

Pages: 1 ... 176 177 [178] 179 180 ... 202

Powered by SMFPacks Social Login Mod