Search found 32 matches

Search found 32 matches

Re: edit the urls from /index.php?route=information/contact

"Still, I cannot see, how this should work, in the lower Section at least, as shown"

Exactly, I tried it & it made no sense. But I figured, hey, maybe I'm missing something...

Thanks for the additional info!

Jump to post
  • Fri Dec 01, 2017 3:40 am
  • Replies 7
  • Views 15974
Re: edit the urls from /index.php?route=information/contact

Will this VQMOD work on OC 3.0.2.0? And if not, do you plan on making one for that version?

Thank you!

Jump to post
  • Thu Nov 30, 2017 6:31 pm
  • Replies 7
  • Views 15974
Re: Redirects - used to work in 2.x, now show up with extra "index.php" in URL

Figured it out. Apparently, htaccess CANNOT do a "2-step" redirect. Because the new site is HTTPS instead of HTTP, and non-www, the RewriteRule has to specify the correct target EXACTLY, with HTTPS and without WWW. So, trying to redirect from a wrong link to the right link, and THEN reform...

Jump to post
  • Wed Nov 29, 2017 5:32 am
  • Replies 1
  • Views 691
[RESOLVED] Redirects - used to work in 2.x, now show up with extra "index.php" in URL

Having an interesting problem with redirects. Previous version of the site was built on OC 2.x. New version is built on 3.0.2.0. Had a lot of redirects set up, to handle incoming requests for outdated URLs. Including, specifically, a pack of 200+ redirects to handle requests for product pages that u...

Jump to post
  • Wed Nov 29, 2017 2:26 am
  • Replies 1
  • Views 691
OC 3.0.2.0 - how to change sort order in Search results? + how to disable "search in descriptions"?

OpenCart 3.0.2.0 + Journal2 theme. Problem: when using the search function, the results are sorted by "Default" sort order. How can I change it to sort by "Name A-Z" (ascending)? I've found a couple of solutions on SO, but they relate to OC 2.x, not 3.x, and they didn't work when...

Jump to post
  • Thu Nov 23, 2017 4:45 am
  • Replies 1
  • Views 1151
Re: Category page - different template for filtered results? If so, which file?

Yeah, I found search.twig (also bestsellers.twig, featured.twig, etc). I'm about to make the product-grid-item a separate block & have it embedded into these templates, so it's modular and CONSISTENT. ...which is how it should have been done in the 1st place, but *shrug*. I also found some JavaS...

Jump to post
  • Wed Oct 25, 2017 4:46 am
  • Replies 12
  • Views 2317
Re: Category page - different template for filtered results? If so, which file?

This is what drives me a little insane in this situation. The Twig file (category.twig) is perfectly fine, it works exactly how I want it to work. But if you do a search, or use the filter, BAM, everything changes. WHY DOES IT HAVE TO CHANGE? Why use a different template, or have JavaScript rewrite ...

Jump to post
  • Wed Oct 25, 2017 4:33 am
  • Replies 12
  • Views 2317
Re: Category page - different template for filtered results? If so, which file?

It's not just the text. Something actually takes the "View" button and replaces it with "Add To Cart". And moves the Compare/Wishlist icons to a different place. And removes the Product Extra Field display. And changes the style. Basically, the entire portion of the product "...

Jump to post
  • Wed Oct 25, 2017 4:31 am
  • Replies 12
  • Views 2317
Re: Category page - different template for filtered results? If so, which file?

Really, that's one hell of a helpful answer.

It's not an issue with Journal, it's an issue with OpenCart. The SAME EXACT THING happens if I do a regular search, on the search results pages.

Jump to post
  • Wed Oct 25, 2017 3:55 am
  • Replies 12
  • Views 2317
Re: Force OC to use SAME template for category, filtered, and search results?

Alternately, if anyone at least knows which template files are being used for these different views, I'd appreciate that info.

(Why OpenCart doesn't have a reference list of which templates drive which views, is beyond me...)

Jump to post
  • Tue Oct 24, 2017 5:57 am
  • Replies 2
  • Views 680
Force OC to use SAME template for category, filtered, and search results?

Let's say I need to make some changes to the way products are displayed in category results. Change some buttons around, styles, etc. Everything looks good. But now, if I use the filter (layered navigation / side filter), OR if I use the text search, the list of results is NOT using the category.twi...

Jump to post
  • Tue Oct 24, 2017 5:55 am
  • Replies 2
  • Views 680
Re: Category page - different template for filtered results? If so, which file?

(In case anyone is wondering what filter I'm talking about, I'm using the Journal2 theme, which has a "Super Filter" module. Not sure if "plain" OpenCart has this option or not.)

Jump to post
  • Tue Oct 24, 2017 5:43 am
  • Replies 12
  • Views 2317
Category page - different template for filtered results? If so, which file?

OpenCart 3.0.2.0, category pages. I have the category template (category.twig) modified, and the modifications work fine in the default view. (Some button text changed, etc). There's a side filter that lets users narrow down the results by size groups. But if this filter is used, i.e. any filter cho...

Jump to post
  • Tue Oct 24, 2017 5:42 am
  • Replies 12
  • Views 2317
Re: How do I add payment logos?

Hey artcore, the link to the VQMod doesn't work anymore :(

Do you happen to have a copy somewhere, or better yet, an updated version for 3.0.2.0?

Thanks in advance if you do, thanks anyway for the manual solution :)

Jump to post
  • Fri Oct 20, 2017 9:35 am
  • Replies 18
  • Views 20622
Checkout - weight still shows for some shipping methods, despite OFF in options

Problem: checkout page shows item weight. Solution: Stores -> Settings -> Checkout -> Display Weight on Cart Page is set to OFF. Problem: weight disappeared from the Flat Rate / Free Shipping methods (yay!)... but the Weight Based Shipping method still shows the weight . How can I disable the weight...

Jump to post
  • Fri Oct 20, 2017 5:02 am
  • Replies 1
  • Views 966
Re: Why switch to Twig and not include basics like "asset" and "Mobile Detect"?

<?php $ismobile = check_user_agent('mobile'); if($ismobile) { echo('<div class="mobile_wrapper">'); include('product-block-mobile-version.php'); echo('</div>'); } else { echo('<div class="desktop_wrapper">'); include('product-block-desktop-version.php'); echo('</div>'); } ?> Now...

Jump to post
  • Fri Oct 20, 2017 4:59 am
  • Replies 5
  • Views 2298
Re: Why switch to Twig and not include basics like "asset" and "Mobile Detect"?

"Google is your friend"... with a link that explains how to do this in PHP . I know how to do this in PHP. I have it done in PHP. But in case you didn't notice, PHP code doesn't work in Twig templates . And if I try to use the solution/s listed online, they require the "Mobile Detect&...

Jump to post
  • Fri Oct 20, 2017 4:56 am
  • Replies 5
  • Views 2298
Shopping cart - keep items longer (increase timeout)

OC 3.0.2.0 - how can I increase the duration of items staying in the shopping cart? Right now, it seems to delete the cart after 30 minutes or so.
Where is this timer controlled from?

Jump to post
  • Wed Oct 18, 2017 2:23 pm
  • Replies 1
  • Views 2303
Why switch to Twig and not include basics like "asset" and "Mobile Detect"?

I'm a little perplexed. OpenCart developers decided to switch to the Twig language for the templates, instead of the good old PHP that everyone's familiar with. OK, that's fine, couple of days of reading manuals and I figured out most of the things I need to change. But why couldn't they include bas...

Jump to post
  • Wed Oct 11, 2017 4:44 am
  • Replies 5
  • Views 2298
Re: How to see actual file path for template?

OMG, so much this.

I'll try to find the OC3 version. Or if you come across one, PLEASE let me know.

Jump to post
  • Tue Oct 03, 2017 5:57 am
  • Replies 4
  • Views 4529

Search found 32 matches