Re: Alternatief voor Journal 3
De beste basis voor een eigen opmaak bestaat uit de header- en footer.twig plus een stylesheet. - Maak in de map 'catalog/view/theme' een nieuwe map, bijvoorbeeld 'seagull' - Open 'seagull' en maak nieuwe mappen 'stylesheet' en 'template' - Open 'template' en maak nieuwe map 'common' - Kopieer vanui...
Jump to post- Wed Apr 08, 2020 8:21 pm
- Replies 4
- Views 672
Re: Adding a Table to item description
Nothing to clear.
After adding the table to the description using the editor, you have to add the style code in code-view.
Click on </> and then past your code.
After that click on </> again and save the product, category or information page. Jump to post
- Fri Mar 27, 2020 1:54 am
- Replies 15
- Views 596
Re: Collapse Product Filter in Mobile View
Something new, something borrowed ...
Install using Extension - Installer
After that Refresh Modifications
Inside archive you find filters-tab.psd. Edit text on image and save as catalog/view/theme/default/image/filters-tab.png
If helpful, show appriciation
- Fri Mar 27, 2020 1:43 am
- Replies 2
- Views 261
Re: Seems Php error, website showing gibberish for me
PHP files always starts with :geel wrote: ↑Thu Mar 26, 2020 10:14 pmhttps://www.hadhiyaa.com site has the problem.
Would appreciate a quick reply.
Thanks
Code: Select all
<?php
Code: Select all
php ini_set('display_errors', 1); error_reporting(~0);
- Thu Mar 26, 2020 11:39 pm
- Replies 9
- Views 461
Re: Search works on 1 site, not another
Avast reports URL:Blacklist Jump to post- Mon Mar 16, 2020 3:54 pm
- Replies 4
- Views 287
Re: Any way to get Animate.css to work on my OpenCart website?
Animate with 'shake effect on all images on MouseOver: <script> $(document).ready(function(){ $('img').mouseover(function(){ $(this).addClass('shake animated').one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', function(){ $(this).removeClass('shake animated'); }); }...
Jump to post- Wed Mar 11, 2020 4:46 pm
- Replies 7
- Views 398
Re: Don't show add to cart button unless logged in
Try attached modification.
- install using Extensions - Installer
- after that Extensions- Modifications - Refresh
Hides Add to Cart buttons and prevents adding to cart with redirect when not logged in.
When helpfull : show apriciation
- Sat Mar 07, 2020 2:28 am
- Replies 5
- Views 258
Re: What is the right SQL syntax?
Code: Select all
$sql .= " AND order_status_id IN ( '22', '20', '24', '23');
- Mon Feb 24, 2020 10:16 pm
- Replies 4
- Views 263
Re: SEO link to point to a product AND a specific picture on that product page?
It works with image name as saved in image/catalog, not the resized cache image name !
Query = product_id=830&image=canon_eos_5d_2.jpg Result here
Jump to postQuery = product_id=830&image=canon_eos_5d_3.jpg Result here
- Mon Feb 24, 2020 8:42 pm
- Replies 17
- Views 924
Re: Language for "reason for return" options on the return form?
If your order status and stock status descriptions are translated, you were near the solution !
Take a closer look at System - Localisation ...
- Mon Feb 24, 2020 2:52 am
- Replies 6
- Views 313
Re: [SOLVED] - Getting notified when a product is out of stock?
Extensions - Installer and after that Refresh Modifications
Jump to post- Sat Feb 22, 2020 4:19 pm
- Replies 10
- Views 519
Re: OpenCart image cache
No massive rewrite ! Simple return filename instead of resizing and storing in cache: On line 7 of catalog/model/tool/image.php add: if ($this->request->server['HTTPS']) { return $this->config->get('config_ssl') . 'image/' . $filename; } else { return $this->config->get('config_url') . 'image/' . $f...
Jump to post- Fri Feb 21, 2020 10:42 pm
- Replies 12
- Views 583
Re: Getting notified when a product is out of stock?
Inside archive edit install.xml and change quantity to your needs. Now is set to 1, meaning mail is send when quantity reaches 0 ...
Code: Select all
if ($qry->row['quantity'] < 1) {
- Fri Feb 21, 2020 9:55 pm
- Replies 10
- Views 519
Re: Using SMTP in Opencart does not work
Server : tls://smtp.mailfence.com
Mail Parameters: -femailadres_sent_from
- Fri Feb 21, 2020 8:42 pm
- Replies 38
- Views 2638
Re: SEO link to point to a product AND a specific picture on that product page?
Mea Culpa, Mea maxima Culpa ...
Jump to post- Fri Feb 21, 2020 6:08 pm
- Replies 17
- Views 924
Re: SEO link to point to a product AND a specific picture on that product page?
You do not have to, I can do it for you ...
- Install attached file and Refresh modifications.
- After that add all the urls you need in Design - SEO url
- Fri Feb 21, 2020 4:17 pm
- Replies 17
- Views 924
Re: SEO link to point to a product AND a specific picture on that product page?
Is this even possible? Yes, it is ! You need to add / change a few lines of code in catalog/controller/product/product.php: if (isset($this->request->get['image'])) { $requested_image = $this->request->get['image']; } else { $requested_image = false; } if ($product_info['image']) { $data['images'][...
Jump to post- Wed Feb 19, 2020 11:19 pm
- Replies 17
- Views 924
Re: Strip comma from last element in JSON string for Schema Markup
... Please advise how I can modify my script. Thanks in advance! - Count elements in breadcrumbs - substract 1 ( for starts at 0, not 1 ) - echo all but last with trailing comma - echo last without , <script type="application/ld+json"> { "@context": "http://schema.org", "@type": "CollectionPage","b...
Jump to post- Sat Feb 01, 2020 4:17 pm
- Replies 12
- Views 1027
Re: sort products by stock quanity
Change all three 'p.sort_order' into 'p.quantity' in lines 21, 224 and 225.
When selecting Sort by: Default , it returns '&sort=p.sort_order&order=ASC'
After changing controller file, goto Extensions - Modifications and Refresh ... Jump to post
- Sat Jan 18, 2020 8:13 pm
- Replies 6
- Views 757
Re: cart out of order tax-total-subtotal???
Ask yourself some questions.
Q: Could tax, total and subtotal be extensions ?
Q: How are extensions managed ?A: Yes, these are extensions.
Q: Why out of order?A: Go to Extensions - Extensions and select type.
Jump to postA: Set sortorder in Extensions - Extensions : Order Totals
- Sat Jan 18, 2020 7:57 pm
- Replies 15
- Views 1209