Search found 745 matches

Search found 745 matches

Re: Google ads Tracking Purchase conversion Event Question

ok thank you will test that to see if it works and the reason people said for that code is because the contact us uses the same success.twig something like that Ooop!, you are right. I forgot the contact page. So you have to add one flag on the order success page. You can do as follows: 1. In the f...

Jump to post
  • Mon May 04, 2020 10:25 pm
  • Replies 5
  • Views 1377
Re: Google ads Tracking Purchase conversion Event Question

<?php if (isset($this->request->get['route']) && $this->request->get['route'] == 'checkout/success') { ?> <!-- tracking code goes here --> <?php } ?> You don't need to check whether it is the success page or not as you are on the success page already. For OC 3.x, just add your tracking code...

Jump to post
  • Mon May 04, 2020 10:02 pm
  • Replies 5
  • Views 1377
Re: What database table and column contains the SEO URL in OpenCart 2.3.0.2

It seems you have already figured it out. I checked https://skyreadyrc.com/store/cobra-5-racing-frame.html is working fine now. However, I want to mention that `seo_url_id ` is just a primary key and it does not have any impact on this matter. The `query` field is the key field. For example, the que...

Jump to post
  • Tue Apr 21, 2020 8:02 pm
  • Replies 6
  • Views 2697
Re: What database table and column contains the SEO URL in OpenCart 2.3.0.2

In OC 2.3.x, the table name is `oc_url_alias` and fields are `query` and `keyword `.
In OC 3.x, it has two additional fields language_id and store_id.

Jump to post
  • Mon Apr 20, 2020 3:34 pm
  • Replies 6
  • Views 2697
Re: Issues to force HTTP to HTTPS opencart 3.0.3.2

The codes are correct. Try putting your redirection code above the opencart code block. It will be like the following: RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://www.yourdomain.com/$1 [R,L] RewriteBase / RewriteRule ^sitemap.xml$ index.php?route=extension/feed/google_s...

Jump to post
  • Wed Apr 01, 2020 2:58 pm
  • Replies 3
  • Views 27955
Re: No Transport No Transport Undefined

Ateix652 wrote:
Tue Mar 31, 2020 9:20 am
Hi There it worked. Thank you very much, you are a life saver. ;D
Glad to hear. Next time replace HTTP to HTTPS carefully :)

Jump to post
  • Tue Mar 31, 2020 12:54 pm
  • Replies 4
  • Views 413
Re: Error in admin

paulfeakins wrote:
Mon Mar 30, 2020 7:10 pm
Most web hosts deny the problem until you prove it's them very clearly.
It was indeed a server issue. The hosting provider has admitted it as their problem. OP told me in a private message.

Jump to post
  • Mon Mar 30, 2020 10:46 pm
  • Replies 8
  • Views 7195
Re: No Transport No Transport Undefined

Replace the jquery library with a fresh version. You have tainted the core jquery.

Jump to post
  • Mon Mar 30, 2020 3:48 pm
  • Replies 4
  • Views 413
Re: Gift Certificate Non-Refundable background

It completely depends on the theme you are using. Share your store URL so we can check.

Jump to post
  • Sun Mar 29, 2020 2:16 pm
  • Replies 1
  • Views 226
Re: [SOLVED] Product catalog broken

There is one mod file that modifies controller/common/header.php, but regarding the base URL, it is exactly the same as in the original header.php: (I used Compare function in Notepad++) hmm, it might be modified at a later time during event processing. But it is being modified somehow, that is sur...

Jump to post
  • Sun Mar 29, 2020 12:50 am
  • Replies 14
  • Views 1554
Re: Error in admin

I contacted them and they say it is not their fault, they say the MySQL server is ok. The error only happen when I check the Notify customer option, if I don't check that everything works fine. therefore it is something related to MySQL server because when that is checked it sends an email to the c...

Jump to post
  • Sun Mar 29, 2020 12:44 am
  • Replies 8
  • Views 7195
Re: [SOLVED] Product catalog broken

have you checked if the header.php was modified via ocmod?

Jump to post
  • Sun Mar 29, 2020 12:30 am
  • Replies 14
  • Views 1554
Re: Error in admin

The error is the following one. It could happen due to several reasons. Contact your host provider and give them the following message.

Code: Select all

 Error: MySQL server has gone away

Jump to post
  • Sun Mar 29, 2020 12:23 am
  • Replies 8
  • Views 7195
Re: Product catalog broken

Fantastic, it worked! I am very surprised why something suddenly changed, since it has been working a long time now and nothing was edited to cause the crash! Thank you very much for your time and help @opencartmart and @straightlight! Awesome! Now check the file controller/common/header.php (or th...

Jump to post
  • Sun Mar 29, 2020 12:14 am
  • Replies 14
  • Views 1554
Re: Error in admin

You have truncated the error message. Please provide the full error message.

Jump to post
  • Sun Mar 29, 2020 12:09 am
  • Replies 8
  • Views 7195
Re: Product catalog broken

But the base href is exactly the same on all pages - the working ones and the broken ones. If it was wrong, shouldn't all the pages be broken? For the rewritten URLs e.g. https://jm.lv/biroja-skapji, base URL is very important. Though it usually works when it is empty but the expected value must be...

Jump to post
  • Sat Mar 28, 2020 11:54 pm
  • Replies 14
  • Views 1554
Re: Product catalog broken

It looks like the .htaccess file is identical to the ones that were backed up even years ago. It hasn't been changed even one byte, so that cannot be the problem, I think! Another reason could be the wrong base URL. Check the screenshot. So either it is htaccess related or for this wrong base URL

Jump to post
  • Sat Mar 28, 2020 9:56 pm
  • Replies 14
  • Views 1554
Re: Product catalog broken

Check the .htaccess file. There must be something wrong. Have you set `RewriteBase ` properly in the .htaccess?
If you are not sure, you can share the .htaccess

Jump to post
  • Sat Mar 28, 2020 9:06 pm
  • Replies 14
  • Views 1554
Re: Opencart 3 cannot process and order up to 390 products

I increased max_input_vars. I fixed the same problem in other similar webshop I had increasing max_input_vars. But in this case is not working. This is another webhosting provider. By any chance, your PHP running with Suhosin Extension, in that case, you have to change the respective Suhosin parame...

Jump to post
  • Sat Mar 28, 2020 1:29 am
  • Replies 11
  • Views 849
Re: No 'short_description' for other cards but category vew.

There is no field like `short_description` in OC. It looks like you have an extension installed for that. By the way, as it is working fine on the category list page, you can add `short_description` to other product controllers similarly e.g. catalog/controller/product/special, catalog/controller/ex...

Jump to post
  • Fri Mar 27, 2020 5:47 pm
  • Replies 2
  • Views 261

Search found 745 matches