Search found 749 matches

Search found 749 matches

Re: [SOLVED] some extensions not working after moving site

I think it was the opencart lightning extension that was causing the issue but not 100% sure as was a while ago now I had this issue and sorted the bestsellers issue by installing the extension again if I remember

Jump to post
  • Tue Jun 23, 2020 5:46 am
  • Replies 2
  • Views 989
Re: hide shipping cost on pickup from store oc 2.3

Just solved it with the following code in catalog/model/extension/shipping/pickup.php in oc 2.3.0.2

Code: Select all

'cost'         => false,

'text'         => false

Jump to post
  • Mon Jun 15, 2020 11:03 pm
  • Replies 5
  • Views 1347
Re: hide shipping cost on pickup from store oc 2.3

If I comment the lines out below, I get the error Notice: Undefined index: text in catalog/view/theme/default/template/checkout/shipping_method.tpl on line 18

Code: Select all

'cost'         => 0.00,

'text'         => $this->currency->format(0.00, $this->session->data['currency'])

Jump to post
  • Mon Jun 15, 2020 9:48 pm
  • Replies 5
  • Views 1347
[SOLVED] - hide shipping cost on pickup from store oc 2.3

I need to remove the 0.00 from pickup from store shipping method, I thought it might be same way as when I did it on a 2.0.3.1 store but it's bit different code on 2.3.0.2 and I get a error if I comment out the following lines 'cost' => 0.00, 'text' => $this->currency->format(0.00, $this->session->d...

Jump to post
  • Mon Jun 15, 2020 8:46 pm
  • Replies 5
  • Views 1347
[SOLVED] some extensions not working after moving site

I created a site using 2.3.0.2 in a folder called shoptest and once it was done I renamed the folder to shop and I then changed the two config files and cleared the system/storage/cache files and refreshed the modifications page and the site seems to have some problems 1) If I go to a product or cat...

Jump to post
  • Sun Jun 14, 2020 2:32 am
  • Replies 2
  • Views 989
Re: remove all countries and zones apart from UK and Ireland

That worked perfect after doing the sql code to disable them and then removed the cache files in system/storage/cache

Jump to post
  • Mon Jun 08, 2020 4:18 am
  • Replies 6
  • Views 1789
Re: remove all countries and zones apart from UK and Ireland

ADD Creative wrote:
Mon Jun 08, 2020 4:05 am
Try clearing the cache files in system/storage/cache.
Thank you will try that now

Jump to post
  • Mon Jun 08, 2020 4:13 am
  • Replies 6
  • Views 1789
[SOLVED] - remove all countries and zones apart from UK and Ireland

I want to remove all countries and regions from the dropdown lists on the checkout side in step 2 and 3 of my 2.3.0.2 store. I tried the following but it deleted all the countries and regions but they still showed on the front end in step 2 and 3 of the checkout delete from oc_country where country_...

Jump to post
  • Mon Jun 08, 2020 3:32 am
  • Replies 6
  • Views 1789
[SOLVED] Re: force https and www in all urls

Just solved it using this code

Code: Select all

RewriteEngine On
RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*) https://www.domain.co.uk%{REQUEST_URI} [R=301,L,NE]
RewriteBase /shoptest

Jump to post
  • Sun Jun 07, 2020 8:38 pm
  • Replies 1
  • Views 313
[SOLVED] force https and www in all urls

I got a opencart 2.3.0.2 site and just need to force https and www in all urls in my htaccess file but unsure how to do it, I tried a few different methods I found on Google but they just redirect the shoptest site to my main site so it ends up as the following www.domain.co.uk/shoptest to https://w...

Jump to post
  • Sun Jun 07, 2020 8:32 pm
  • Replies 1
  • Views 313
Re: seo urls issue after upgrade

I looked at the link and my htaccess file is the same as the one in that link so looks all ok on that side of it

Jump to post
  • Wed Jun 03, 2020 4:12 pm
  • Replies 4
  • Views 366
Re: seo urls issue after upgrade

The contact page doesn't have a SEO URL by default. It was probably added by an extension. Check to see if the extension you were using has been upgraded to work with 2.3.0.2. I have just reinstalled the extension that I had on the 2.0.3.1 store as it says it's for 2.3.0.2 as well as 2.0.3.1 https:...

Jump to post
  • Wed Jun 03, 2020 7:44 am
  • Replies 4
  • Views 366
seo urls issue after upgrade

I have upgraded from 2.0.3.1 to 2.3.0.2 and have found a issue with some seo urls such as the contact page and latest products pages so far that the seo urls don't seem to be working Not sure where the issue is, I have a seo urls extension installed that was made dotbox creative that was on the 2.0....

Jump to post
  • Wed Jun 03, 2020 7:19 am
  • Replies 4
  • Views 366
Re: duplicate content on parent and sub categories

paulfeakins wrote:
Mon Jun 01, 2020 7:53 pm
I suggest you buy an SEO extension to fix this.
Is there any you recommend?

Jump to post
  • Mon Jun 01, 2020 8:03 pm
  • Replies 4
  • Views 649
Re: duplicate content on parent and sub categories

Not sure if have solved it but I found the following line in catalog/controller/product/category.php $this->document->addLink($this->url->link('product/category', 'path=' . $this->request->get['path']), 'canonical'); I commented out that line and only got the canonical tag showing in the parent cate...

Jump to post
  • Mon Jun 01, 2020 7:21 pm
  • Replies 4
  • Views 649
duplicate content on parent and sub categories

I have a o/c 2.0.3.1 store and I need bit of help with duplicate content and canonical urls. If I visit https://www.domain.co.uk/shop/Cables-Adapters/Apple-Lightning and https://www.domain.co.uk/shop/Apple-Lightning, they are the same content and worried Google is seeing duplicate content. The categ...

Jump to post
  • Mon Jun 01, 2020 2:48 am
  • Replies 4
  • Views 649
[SOLVED] - hide shipping cost if free shipping

Is there a way to hide the shipping cost if free shipping is enabled in step 4 of the checkout, currently it looks like Free Shipping - £0.00

UPDATE: Just amended the free.php in the catalog/model/shipping/free.php and removed the £0.00 part

Jump to post
  • Sun May 31, 2020 4:45 am
  • Replies 1
  • Views 582
Re: class table-responsive is not actually responsive

masterross wrote:
Sat May 30, 2020 10:48 pm
Glad you sorted.
You can check my CSS file for more info.
Thank you appreciate it and sharing your CSS file

Jump to post
  • Sun May 31, 2020 4:14 am
  • Replies 8
  • Views 1974
Re: make shopping cart table responsive

Sorry sorted it now, I used the coding from here in the end http://jsfiddle.net/9k6xL0dt/

Jump to post
  • Sat May 30, 2020 10:31 pm
  • Replies 2
  • Views 644

Search found 749 matches