Search found 7644 matches

Search found 7644 matches

Re: How can I Moderate Comments in OpenCart Marketplace?

Alas, all you can do is remove posted comments.

There is no way of pre-moderating comments before they are posted.

You should contact support about spam comments though, preferably before deleting them, as I am not sure they are logged after deletion.

Jump to post
  • Thu Jul 09, 2020 3:35 pm
  • Replies 7
  • Views 1659
Re: google search wont accept sitemap!

Google Search Console is very finicky in recent months What URL are you submitting ( the long one index.php?route=extension/feed/googlesitemap or the short one sitemap.xml ) If you have .htaccess enabled from the default OC Download, it will contain a rewrite so you can use yourdomain.com/sitemap.xm...

Jump to post
  • Thu Jul 02, 2020 6:43 pm
  • Replies 4
  • Views 466
Re: Extracting opencart folder in existing opencart directory

As long as it's the same version and you did not modify any core files previously, it shouldn't be a problem. I usually ask people to do this if they are recovering from a hack or malware infestation so the core files are restored to correct versions. You may have a couple of un-needed files which y...

Jump to post
  • Sun Jun 21, 2020 4:44 pm
  • Replies 2
  • Views 409
Re: How to increase max upload size

root folder (pretty much everything on frontend is run through root index.php)
admin folder (pretty much everything on backend is run through admin index.php)

Jump to post
  • Sun Jun 21, 2020 4:41 pm
  • Replies 1
  • Views 351
Re: How to start counting order from 0

Assuming you want to start fresh with your orders, delete all current orders Then via PHPMyAdmin go in to the oc_order table, click on operations tab, set Auto Increment value to '0' Whilst in there, make sure the following tables are empty also: oc_order_history oc_order_option oc_order_product oc_...

Jump to post
  • Sun Jun 21, 2020 4:36 pm
  • Replies 2
  • Views 352
Re: what is oc_category_path?

It is what links your subcategories to their parent categories

Say you have a subcategory called 'subcategory'

In your store you have:

maincategory
|-- subcategory

The path for subcategory would be maincategory - root (0)

Jump to post
  • Mon Jun 15, 2020 3:58 pm
  • Replies 2
  • Views 834
Re: [SOLVED] - remove all countries and zones apart from UK and Ireland

Doing your first batch of SQL queries will delete all countries and zones leaving you with none delete from oc_country where country_id <> 222; delete from oc_zone where country_id <> 222; delete from oc_country where country_id <> 103; delete from oc_zone where country_id <> 103; If you want to ret...

Jump to post
  • Mon Jun 08, 2020 4:30 am
  • Replies 6
  • Views 1780
Re: Redirect to different url when in Maintenance mode?

You could put a simple redirect in the maintenance controller

catalog/controller/common/maintenance.php

After:

Code: Select all

	public function index() {
Add:

Code: Select all

$this->response->redirect('FULL_URL_TO_YOUR_MAINTENANCE_HTML_PAGE');

Jump to post
  • Sun May 31, 2020 3:49 pm
  • Replies 4
  • Views 1459
Re: Clear looking Opencart Checkout page

Please advise your OC version so we can move this topic to the relevant forum

Jump to post
  • Sun May 31, 2020 3:26 pm
  • Replies 1
  • Views 458
Re: Automatic Product Tags Feature

Please advise your OC version so we can move this topic to the relevant forum

Jump to post
  • Sun May 31, 2020 3:26 pm
  • Replies 1
  • Views 299
Re: Screen Size

You would probably need multiple breakpoints as the text is large and wraps even on tablets

Jump to post
  • Thu May 28, 2020 3:29 pm
  • Replies 9
  • Views 933
Re: Screen Size

Well, first of all you have hardcoded the Header as text with inline styles setting a fixed font-size. <span style="font-family: 'Gotham A', 'Gotham B'; font-size: 90px; color:#fff; margin:140px;">Russo And Son Tactical</span> If you used an image instead (possibly a transparent png if you...

Jump to post
  • Wed May 27, 2020 11:51 pm
  • Replies 9
  • Views 933
Re: Different prices based on Login?

This can be done using customer groups. For standard public members they will see the default price that you enter on the data tab when editing a product For other groups that you have created and assigned customers to, you would use the discount tab when editing a product and on that tab you would ...

Jump to post
  • Wed May 27, 2020 11:40 pm
  • Replies 1
  • Views 361
Re: Sitemap to submit to Google Webmaster Tools

If you have enabled SEO URLs in your website and have therefore already enabled the .htaccess file, you can also access your sitemap, once enabled in the settings, by visiting yourdomain.com/sitemap.xml as there is already a rewrite rule in the default opencart htaccess for that. If you want more co...

Jump to post
  • Tue May 26, 2020 3:21 pm
  • Replies 9
  • Views 1238
Re: How to Disable or remove Remove Product Returns - OpenCart Version 3.0.3.3

The simplest method would be to remove the link to it from Customer Services column in the footer catalog/view/theme/default/template/common/footer.twig find and delete: <li><a href="{{ return }}">{{ text_return }}</a></li> To be thorough, you can also remove links to the returns from your...

Jump to post
  • Mon May 25, 2020 6:38 pm
  • Replies 4
  • Views 2621

Search found 7644 matches