Search found 27 matches

Search found 27 matches

Re: How do I redirect pages

Better option is to use canonical URLs.

Spiders will treat this better.
.haccess will add to server load

Jump to post
  • Thu Jul 26, 2012 12:27 pm
  • Replies 6
  • Views 941
Re: unwanted symbol in footer

Do view source from browser you will get this

<
</table>

So you need to check code in footer.tpl in common folder.

Jump to post
  • Wed Jul 25, 2012 11:11 am
  • Replies 4
  • Views 462
Re: Shipping Mark up?

If shipping additional cost you want to add is fixed for all orders then you can use hadling fee which is there in order total.

Jump to post
  • Wed Jul 25, 2012 11:05 am
  • Replies 10
  • Views 1338
Re: Adding a percentage for currency bank charges

There are some commercial modules available that will do that same.

Are you looking for a free module or commercial module.
Check in extension under order total.

Jump to post
  • Tue Jul 24, 2012 1:17 pm
  • Replies 4
  • Views 422
Re: Custom titles on paginated category pages

This code in library pagination class needs to be modified. if ($num_pages > 1) { if ($num_pages <= $num_links) { $start = 1; $end = $num_pages; } else { $start = $page - floor($num_links / 2); $end = $page + floor($num_links / 2); if ($start < 1) { $end += abs($start) + 1; $start = 1; } if ($end > ...

Jump to post
  • Tue Jul 24, 2012 1:06 pm
  • Replies 3
  • Views 1435
Re: What's the difference between transactions and orders?

1. An order can be placed without any funds involved.

2. A transaction is when funds transfer across.

Jump to post
  • Tue Jul 24, 2012 1:01 pm
  • Replies 6
  • Views 3582
Re: Installing SSL certificate in OpenCart

Log into the OpenCart Dashboard(Admin)
-- System > Settings
--Click Server tab
--Check the radio button to use SSL

Jump to post
  • Tue Jul 24, 2012 12:59 pm
  • Replies 6
  • Views 5719
Re: Installing SSL certificate in OpenCart

You want to install SSL or configure SSL on opencart.

Installation is something thats done by hosting company and not related to opencart any way.

Jump to post
  • Tue Jul 24, 2012 12:57 pm
  • Replies 6
  • Views 5719
Re: How can I make customers filling address info optional?

in register.tpl you will find this:
<td><span class="required">*</span> <?php echo $entry_firstname; ?></td>

so this class required needs to be changed.

so modified line will be
<td><?php echo $entry_firstname; ?></td>

Jump to post
  • Fri Jul 20, 2012 2:45 am
  • Replies 1
  • Views 796
Re: Step by Step - Product Configurator - new extension

Waiting for link to comment.
Will that be a commercial version or a free version.

Jump to post
  • Fri Jul 20, 2012 2:40 am
  • Replies 23
  • Views 10559
Re: Undefined index: newfield in catalog model checkout orde

Thats a Notice.
You can disable(if features are working fine).

In startup.php you have
// Error Reporting
error_reporting(E_ALL);


comment this line out.

Jump to post
  • Fri Jul 20, 2012 2:34 am
  • Replies 2
  • Views 1481
Re: @Developers - OpenCart Global Library Methods [1.4.x]

Good reference document for quick solutions.
Highly appreciated.

Jump to post
  • Fri Jul 20, 2012 2:29 am
  • Replies 29
  • Views 108809
Re: Authorize.net AIM cURL Issue

curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, 0);

set this to
curl_setopt($this->ch, CURLOPT_SSL_VERIFYPEER, true);



and check.

Jump to post
  • Thu Jul 19, 2012 2:42 am
  • Replies 3
  • Views 3180
Re: Fatal error: Class 'Modelaccountorder' not found in /hom

Check if you have following file:
catalog>>Model>>account>>order.php

and its permissions.

Also check the path specified.

Jump to post
  • Wed Jul 18, 2012 12:34 am
  • Replies 13
  • Views 2454
Re: SEO URLs

URLs need to be exact( else you need to state permanently moved ).

Jump to post
  • Wed Jul 18, 2012 12:31 am
  • Replies 2
  • Views 241
Re: How to Hide Disabled products in Admin?

Iv code you need to apply an additional filter so as to allow you to see products in admin ( enabled and all status)

Jump to post
  • Wed Jul 18, 2012 12:29 am
  • Replies 2
  • Views 535
Re: Set default currency rate to change depending on USD

1. You need to create a script that will take currency rate from some online feed.

2. Now This should be dumped into data base field that handled conversion.

3. This script should be run via cron say every 4 hrs.

Jump to post
  • Wed Jul 18, 2012 12:27 am
  • Replies 4
  • Views 2021
Re: SKU at option level

http://www.opencart.com/index.php?route

looks like incomplete link so giving error page.

Please do provide proper link to check.

Thanks!!

Jump to post
  • Tue Jul 17, 2012 12:37 pm
  • Replies 3
  • Views 1904
Re: OpenCart 1.6.0 Roadmap

Different product types:
1. Simple Products.
2. Configurable Products.
3. Bundle products.

Jump to post
  • Tue Jul 17, 2012 2:30 am
  • Replies 538
  • Views 255501

Search found 27 matches