Sitemap feed multilanguage
Hello everyone. I recently added a second language (Greek) in my oc and I'm trying to include it in my sitemap, I use different SEO_URL for each language. The extension that I use is the default one and it generates an xml based on the current language each time, at least that's what I understand. I...
Jump to post- Fri Jul 25, 2025 4:10 pm
- Replies 1
- Views 1284
Re: Round total price with shipping at cart
Thank you, I understand what you mean, I might revert it to two decimals for now because it looks like an error ...
Jump to post- Wed May 28, 2025 5:32 pm
- Replies 3
- Views 1266
[SOLVED] Round total price with shipping at cart
Hello everyone, I have a small problem which I found out many users encourage, or kind of similar issue. I have multi-currency in my store and I wanted to show zero decimals in prices, I found that in currencies, ok. Although the products round up correctly, the total cost is not calculated based on...
Jump to post- Wed May 28, 2025 3:14 pm
- Replies 3
- Views 1266
Re: Center additional images in mobile view
this css alternation worked if anyone interested, so I will mark the post as SOLVED, thank you guys! @media (max-width: 767px) { .thumbnails { overflow: auto; clear: both; list-style: none; padding: 0; margin-bottom: -40px; display: flex; flex-wrap: wrap; justify-content: center; } }
Jump to post- Sat May 24, 2025 3:28 pm
- Replies 10
- Views 7052
Re: Center additional images in mobile view
Sorry I removed the modification that you advised because it was not look alright and didn't want to leave it like this. It is still aligned at the left. Jump to post
- Fri May 16, 2025 3:26 am
- Replies 10
- Views 7052
Re: Center additional images in mobile view
Some thing like this? @media (max-width: 768px) { .image-additional { display: flex; justify-content: center; flex-wrap: wrap; text-align: center; margin: 0 auto; float: none !important; } .image-additional a { margin: 5px; } } Don't forget to refresh your theme cache and modifications. Thank but t...
Jump to post- Fri May 16, 2025 12:19 am
- Replies 10
- Views 7052
Re: Center additional images in mobile view
https://tonias-handmade.com Jump to postJNeuhoff wrote: ↑Thu May 15, 2025 10:30 pmThis can be easily done with your theme's stylesheet.css. But first you have to provide proper details, see forum rules. Also what's your website URL?
- Thu May 15, 2025 11:31 pm
- Replies 10
- Views 7052
Re: Center additional images in mobile view
It's default theme, I have altered the CSS and the breadcrumb on top.
Do you think that additional images section was center by default and I altered it accidentally ?
- Thu May 15, 2025 10:28 pm
- Replies 10
- Views 7052
[SOLVED] Center additional images in mobile view
Hello, I want to make the additional images shown under the main image to display at the center of the screen instead on the left in mobile view. I tried to play with display and float options in css .image-additional but couldn't make it work.... Thank you in advance Version 3.0.3.8 default theme P...
Jump to post- Thu May 15, 2025 9:19 pm
- Replies 10
- Views 7052
Re: Sumbmiting review
with the help of developer mode and Gemini ;D The human beings who write the code are the people that helped you, all Gemini did was "steal" it and package it as their own - they do not deserve the credit. Nevertheless, glad you found a solution. Please mark the topic to include [SOLVED] ...
Jump to post- Sat May 10, 2025 3:15 am
- Replies 7
- Views 3492
Re: Sumbmiting review
Well I found it, kind off, If anyone is interested, I pasted this script (with the help of developer mode and Gemini ;D ) <script defer> document.addEventListener('DOMContentLoaded', function() { if (window.location.hash === '#tab-review') { // Find the corresponding tab link and simulate a click to...
Jump to post- Fri May 09, 2025 7:46 pm
- Replies 7
- Views 3492
Re: Move add to cart, optons, qty etc above description in mobile view - 2.3.0.2
I know this is an old post but I wanted to mention that this works on oc 3.0.3.8 and it looks briliant on mobile.
I just copy pasted the script that you mentrion on your first answer at product.tpl (product.twig for oc 3)
- Fri May 09, 2025 4:33 pm
- Replies 16
- Views 47670
Re: Sumbmiting review
Have you checked the marketplace? I believe there are many available. Try searching using google for example (not recommended just as an example) https://www.opencart.com/index.php?route=marketplace/extension/info&extension_id=27045 Thank you Mona, I do not want the procedure, I just want to di...
Jump to post- Fri May 09, 2025 2:07 pm
- Replies 7
- Views 3492
[SOLVED] Submitting review
Hello, I've seen similar old posts asking for this solution but I found only for old oc versions. I want to send an email to a customer who had already receive an item to leave a review on the product page, and want to send a direct link that will take him/her to the product review submission form.....
Jump to post- Fri May 09, 2025 1:43 pm
- Replies 7
- Views 3492
Re: How to display currency word in mobile view
Nevermind I found it myself ;D If anyone is interested its in common/currency.twig {% endfor %} <span class="hidden-xs hidden-sm hidden-md">{{ text_currency }}</span> <i class="fa fa-caret-down"></i></button> replace with {% endfor %} <span class="">{{ text_cur...
Jump to post- Tue Apr 22, 2025 10:12 pm
- Replies 3
- Views 617
[SOLVED] How to display currency word in mobile view
Hello everyone,
I believe this is simple...I want to display the "Currency" word in mobile view in header as it is in desktop view. I do not want only the symbol.
Thanks in advance.
Version 3.0.3.8
default theme
PHP: 7.3.13
- Tue Apr 22, 2025 9:59 pm
- Replies 3
- Views 617
Re: Featured products two column mobile
Thank you You are welcome if the meta is long, I get the same problem Yes because it is bootstrap and that straps it in like bootlaces - there are so many screen sizes that the 'correct' way is far more complicated to fix and requires a significant amount of personalised effort using media queries ...
Jump to post- Wed Apr 09, 2025 6:56 pm
- Replies 10
- Views 1268
Re: Featured products two column mobile
@media (min-width: 767px) { That says if the media is at least (a minimum of) 767px width @media (max-width: 768px) { That says if the media is no more than (a maximum of) 768px width I know that I just wondered if I put the code out of this condition will make any difference.... but still did not ...
Jump to post- Wed Apr 09, 2025 6:26 pm
- Replies 10
- Views 1268
Re: Featured products two column mobile
Thank you, I used meta_description instead and now they look better and not corrupted, still if the meta is long, I get the same problem but I can fix this easier since meta should not be too long, I know this has to do with another topic which is not oc related. Can I implement this change to relat...
Jump to post- Wed Apr 09, 2025 6:23 pm
- Replies 10
- Views 1268
Re: Featured products two column mobile
Thank you but unfortunately I still get those gaps in mobile view but I can see the change in desktop view, the boxes are taller...the code is inside @media (min-width: 767px) { if that helps....Maybe it's possible to use meta description instead of actual description in those thumbs, will this help...
Jump to post- Wed Apr 09, 2025 1:48 pm
- Replies 10
- Views 1268