Search found 113 matches

Search found 113 matches

Re: [HOW TO] Change Default Product Sort Order

I'm now on 1.5.2.1 but found my original post was not quite the way to do this. I'm now doing the following using a vqmod: <file name="catalog/controller/product/category.php"> <operation> <search position="replace"><![CDATA['href' => $this->url->link('product/category', 'path=' ...

Jump to post
  • Sat Mar 09, 2013 9:24 am
  • Replies 26
  • Views 90490
Re: Captcha - any way to remove 0's and O's?

Jay can confirm this, I'm just experimenting but I think the following edit:

Code: Select all

$this->code = substr(preg_replace('~[0o1il]+~i', '',sha1(mt_rand())), 17, 6);
will also remove "1, i, l" if desired.

Jump to post
  • Sun Aug 05, 2012 10:55 am
  • Replies 4
  • Views 1245
Re: Captcha - any way to remove 0's and O's?

Second that Jay! But I'm still seeing the number 1. (1.5.2.1)

Jump to post
  • Sun Aug 05, 2012 10:50 am
  • Replies 4
  • Views 1245
(SOLVED) Re: Custom titles on paginated category pages

Thanks to all who responded or messaged. I have managed to sort out the functionality I was looking for. Thanks!

Jump to post
  • Wed Jul 25, 2012 3:44 am
  • Replies 3
  • Views 1442
Re: [Solved] PHP URL Parameter Code?

Any ideas how to append category page number to the category page title?

www.mysite.com/category with title "Category"
www.mysite.com/category?page=2 with title "Category Page 2"
www.mysite.com/category?page=3 with title "Category Page 3"

Jump to post
  • Wed Jul 25, 2012 1:27 am
  • Replies 3
  • Views 2008
Re: SOLVED - Duplicate Title and Meta Tags OC v1.5.1

If anyone is interested, I kluged something together that works to solution my request above. I'm sure it can be programmed more efficiently and correctly than this, but it works. if ($this->document != NULL && $page > 1) $this->document->addLink($this->url->link('product/category', 'path=' ...

Jump to post
  • Wed Jul 25, 2012 12:31 am
  • Replies 13
  • Views 7464
Re: Removing AJAX from product tabs

I think that would be a sweet addition! Agree wholeheartedly!

Jump to post
  • Tue Jul 24, 2012 4:10 am
  • Replies 30
  • Views 9720
Custom titles on paginated category pages

I have added fields to my database for category title and am looking for help with making this title unique on each of the paginated result pages except for Page 1. Page 1 = Gemstone Jewelry (the text I enter in admin for the category) Page 2 = Gemstone Jewelry - Page 2 Page 3 = Gemstone Jewelry - P...

Jump to post
  • Tue Jul 24, 2012 4:01 am
  • Replies 3
  • Views 1442
Re: SOLVED - Duplicate Title and Meta Tags OC v1.5.1

Simon, on this line of your canonical category vQmod: $this->document->addLink($this->url->link('product/category', 'path=' . $category_id), 'canonical'); Do you have any idea how this would be changed so that I can capture the pagination URL? I want to canonicalize each page like this: http://www.m...

Jump to post
  • Wed Jul 18, 2012 10:26 am
  • Replies 13
  • Views 7464
Re: Pagination links rel "attribute"

Nice! So does it handle all the conditions stated above? And this definitely adds the various link rels within the <head> tag? Sweet if so!

Jump to post
  • Fri May 25, 2012 4:02 am
  • Replies 8
  • Views 2734
Re: Modify Pagination Header

Any success here?

Jump to post
  • Fri May 25, 2012 3:46 am
  • Replies 3
  • Views 700
Re: OpenCart MySQL Commands

I second that! Very helpful!

Jump to post
  • Fri May 11, 2012 10:53 pm
  • Replies 1
  • Views 787
Re: Google Analytics Ecommerce Tracking

Thanks moneycarlo, I have verified the variables in Developer Tools and in Firebug, so I'm less concerned, especially since I got one conversion to register last night perfectly. But I've tested another w/o coupon code today and it's not in analytics yet (and it's been over an hour). It's very stran...

Jump to post
  • Thu May 10, 2012 12:15 am
  • Replies 139
  • Views 114554
Re: Google Analytics Ecommerce Tracking

OK, I think I may have narrowed this down to an issue with coupons. I finally saw one order come through analytics last night and it might have been the ONLY order I did test w/o a coupon. Has anyone else seen issues with coupon entries causing issues with reporting in Google Analytics? Moneycarlo, ...

Jump to post
  • Wed May 09, 2012 10:50 pm
  • Replies 139
  • Views 114554
Re: Google Analytics Ecommerce Tracking

Yeah, the first thing I did was to see if I could see the variables in Developer Tools (and I can). But still nothing in my Google Analytics account. It's now been long enough to register. Using default template, no edits to the path. GA enabled in admin and E-Com tracking turned on in the GA accoun...

Jump to post
  • Wed May 09, 2012 9:38 am
  • Replies 139
  • Views 114554
Re: Google Analytics Ecommerce Tracking

I can confirm addOrder($data) is in my version, which is 1.5.2.1. I've looked at my Google account in analytics and no conversions reported for the 5 or 6 test orders I placed. Wouldn't have anything to do with C.O.D. paymethod would it? I did not try a PayPal order but will. I'll try to see if I ca...

Jump to post
  • Wed May 09, 2012 7:46 am
  • Replies 139
  • Views 114554
Re: Google Analytics Ecommerce Tracking

Moneycarlo, the tracking code is not rendering when I view the source on the success page using your vQmod. <?php if(isset($orderDetails) && isset($orderProducts) && isset($orderShipping) && isset($orderTax)) { ?> <script type="text/javascript"> var _gaq = _gaq || [...

Jump to post
  • Tue May 08, 2012 3:03 am
  • Replies 139
  • Views 114554
Re: Pagination links rel "attribute"

That's what my initial thoughts were but that doesn't encode the <head> tag on each page. What I'm after isn't for anchor tags, but instead page link tags. The coding would need to render page link tags in the <head> like the following: On the first page, http://www.example.com/article?story=abc&...

Jump to post
  • Sat Apr 21, 2012 3:08 am
  • Replies 8
  • Views 2734
Re: Removing AJAX from product tabs

Ah! Thanks!

UPDATE: That did the trick! Thanks again mate!

Jump to post
  • Fri Apr 20, 2012 11:41 pm
  • Replies 30
  • Views 9720
Re: Removing AJAX from product tabs

Sweet! Thanks for that tip!

So how does one do that exactly? And where? Is it a code addition, replacement? That looks a bit more challenging for my skill level :D

Jump to post
  • Fri Apr 20, 2012 11:24 pm
  • Replies 30
  • Views 9720

Search found 113 matches