Show Posts


Messages - abantecart

Pages: 1 ... 177 178 [179] 180 181 ... 203
2671
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?

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

2673
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

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

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

2676
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


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

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

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

2680
General Support / Re: cart will not open, shows error
« on: December 28, 2012, 11:06:20 PM »
This looks like your server issue. PHP can not load library.

Is this shared hosting?

2681
General Support / Re: subjects i click on don't open
« on: December 28, 2012, 11:04:32 PM »
What page exactly? Please provide more details.

2682
General Support / Re: cant change text in language definitions
« on: December 19, 2012, 11:11:32 PM »
Please try again. This problems usually go away on second attempt.

We will try to catch this problem and eliminate.

2683
New Features Discussion / Re: Shipping Suggestion
« on: December 16, 2012, 11:11:49 PM »
Yes we can added it to the list of extension candidates. It is hard to say when exactly it will be done. If you need it fast, please PM.

2684
Support / Re: upload images problem
« on: December 16, 2012, 09:58:02 AM »
Did you do any modifications to file or directory structure on your server.
Did you do any updates to database?
Do you get any error on image upload?

It is not possible to give you any suggestion based on your question.

2685
Templates / Re: Templete 2 Prouct Image Issue
« on: December 13, 2012, 03:14:50 PM »
Did you do any changes in the code? Did you enable SSL?
Can we see your URL/link?

Pages: 1 ... 177 178 [179] 180 181 ... 203

Powered by SMFPacks Social Login Mod