Search found 3 matches

by nehakakar
Fri Aug 25, 2023 8:06 pm
Forum: Community Help & Support
Topic: Adding a canonical link, or redirect, to index.php
Replies: 4
Views: 4136

Re: Adding a canonical link, or redirect, to index.php

You can simply edit your index page and add below line <link rel="canonical" href="https://www.mysite.com/myosc/" /> or You can simply edit your .htaccess with below script as i did it. RewriteEngine On RewriteCond %{THE_REQUEST} ^GET\ /myosc/index\.php [NC] RewriteRule ^ /myosc/...
by nehakakar
Tue Aug 22, 2023 12:16 pm
Forum: Community Help & Support
Topic: Error checking out on checkout_confirmation.php
Replies: 9
Views: 14415

Re: Error checking out on checkout_confirmation.php

Compare the column names and their order in the INSERT INTO orders query with the actual structure of the orders table in your database. Check the column names and their sequence match. The column customers_country_id indeed exists in the orders table. If it doesn't exist, you need to determine whet...
by nehakakar
Tue Jul 11, 2023 12:09 pm
Forum: Community Help & Support
Topic: Remove Add to cart button from product listings
Replies: 16
Views: 5799

Re: Remove Add to cart button from product listings

Hi, as far as I understand the products_card.php is used by the boxes and not for the product listing which was in question. So i would guess components/product_listing.php would be the right file to edit. Maybe commenting out like this: //if ($has_attributes == 0) $prod_list_contents .= tep_draw_b...