Search found 219 matches

Search found 219 matches

Re: Zip (Previously zipMoney / zipPay) Extension for OC v1.5.5.1

Well, I ended up fixing this myself. The developer was attempting to help through Skype and we did not seem to be getting anywhere, so I ran a couple of tests and narrowed this down to the vQmod file, where I found an if statement was not structured correctly. I passed this onto the developer during...

Jump to post
  • Wed Aug 15, 2018 10:52 am
  • Replies 7
  • Views 5115
Re: Zip (Previously zipMoney / zipPay) Extension for OC v1.5.5.1

Just an FYI for anyone chasing a Zip Pay extension for OpenCart v1.5.x. I would recommend against the extension found here: http://www.opencart-extension.com/zippay While it does seem to work, the developer has been very slow to respond to issues and I am now seeing errors in our log for which the d...

Jump to post
  • Sat Aug 11, 2018 7:11 pm
  • Replies 7
  • Views 5115
Re: Session Variables?

The format and structure of $this->session->data changes from version to version, so the easiest way is just to print it out so you can see it. I usually do something like this in the /catalog/controller/common/header.php file: echo '<!--'; print_r($this->session->data); echo '-->';  That will hide...

Jump to post
  • Thu Jul 05, 2018 9:30 am
  • Replies 8
  • Views 23699
Re: Zip (Previously zipMoney / zipPay) Extension for OC v1.5.5.1

Thank you for your concern Ernie. Yes, I do also manually review all core files to check date last modified but I do not use a process as extensive as your example appears. Could you tell me the application you are using? Further to this, we have a subdomain setup which runs a clone of our store wit...

Jump to post
  • Thu Jun 21, 2018 8:30 am
  • Replies 7
  • Views 5115
Re: Zip (Previously zipMoney / zipPay) Extension for OC v1.5.5.1

IP_CAM, that is what I was thinking also. You are quite right regarding server credentials. I am already extremely careful when handing over credentials. I always create a new support account and only provide access to the required areas. Also, each time this has been required, new credentials have ...

Jump to post
  • Wed Jun 20, 2018 11:03 am
  • Replies 7
  • Views 5115
Zip (Previously zipMoney / zipPay) Extension for OC v1.5.5.1

Zip have released an official extension for OC 2.0 and above. Problem being is that our store is too heavily customised to consider an update from 1.5.5.1 at this time. I know that time will eventually come but I am hoping to prolong this as long as possible. That being said, would any of the develo...

Jump to post
  • Wed Jun 20, 2018 10:06 am
  • Replies 7
  • Views 5115
Re: Updating Filter Product Count

This Extension might be your solution! http://www.opencart.com/index.php?route=extension/extension/info&extension_id=26098&filter_search=filter%20count&filter_license=0&filter_download_id=43&page=2 As noted in the first post, this does not update the product count once a filter ...

Jump to post
  • Thu Mar 30, 2017 7:29 am
  • Replies 4
  • Views 2098
Re: Changing Default Product Sort Order

Just to follow up on this, is the line below in catalog/model/catalog/product.php not the primary mapping for the product sort order? 'sort_order' => $query->row['sort_order'], As noted above, editing this does not seem to affect the default product order within categories. The end goal is to dynami...

Jump to post
  • Fri May 13, 2016 9:16 am
  • Replies 4
  • Views 3852
Re: Changing Default Product Sort Order

Just as a follow up to the above (slightly different approach). I have made this change to catalog/model/catalog/product.php Changed: 'sort_order' => $query->row['sort_order'], To: 'sort_order' => ($query->row['quantity'] != 0 ? $query->row['sort_order'] : 9999), The expected result was that if a pr...

Jump to post
  • Tue May 10, 2016 4:11 pm
  • Replies 4
  • Views 3852
Re: Sort Related Products on Related Products Tab by Desc, M

Sorry to bump an old thread but just looking at this myself. It appears that this query has changed in later versions of OC. Any chance of help for the appropriate changes for 1.5.5.1? Note: I attempted to paste the query but I was blocked (SQL query was interpreted as an attempted attack). Edit: An...

Jump to post
  • Fri May 06, 2016 11:57 am
  • Replies 10
  • Views 3013
Changing Default Product Sort Order

When viewing the product list within a category and two or more products have a matching sort order, the default behaviour is that these products will then be sorted alphabetically. Is there any way to change this to another sorting method? So, if two or more products have a matching sort order of &...

Jump to post
  • Thu May 05, 2016 11:50 am
  • Replies 4
  • Views 3852
Re: Paypal Standard Total Incorrect

The latest OpenCart 2.x still adds shipping, discounts and taxes all on one line. This thread may be of help it you are looking to change it. http://forum.opencart.com/viewtopic.php?f=131&t=38306 Thank you for the confirmation. It's a shame that such an issue has not been corrected. Looking ove...

Jump to post
  • Sat Apr 30, 2016 9:11 am
  • Replies 31
  • Views 21112
Re: Paypal Standard Total Incorrect

This has been fixed since a long time ago. This shouldn't be an issue in current versions. Just to confirm, are you stating that current versions of OpenCart SEPARATE shipping and discounts onto a separate line? We're still using OC 1.5.5.1 (using a heavily customised responsive theme, so no need t...

Jump to post
  • Sat Apr 30, 2016 6:22 am
  • Replies 31
  • Views 21112
Re: Product Discount as Percentage Needed Badly

Excuse me for digging up this old thread but I also require this. To clarify, I am not looking for a modification that will simply calculate the special/discount based on a percentage on the fly, I would like to enter a percentage and this will be applied to the product permanently, including produc...

Jump to post
  • Fri Oct 09, 2015 7:26 am
  • Replies 22
  • Views 15528
Re: [How to] Add watermark to image???

Great news! I didn't even realise this function was built into the core. A quick question. In catalog/model/tool/image.php there is an if statement that needs to be set to true in order to force watermarking (if the image is of the correct dimensions). if ($width_orig != $width || $height_orig != $h...

Jump to post
  • Tue Jun 23, 2015 10:47 pm
  • Replies 28
  • Views 33113
Re: Updating Filter Product Count

I am beginning to wonder if this is perhaps far more difficult than I had anticipated.

If there are any developers who feel that they could achieve this, please feel free to comment in this thread or even provide a quote via PM.

Jump to post
  • Sun May 24, 2015 5:30 pm
  • Replies 4
  • Views 2098
Updating Filter Product Count

I have been attempting to improve the default filters to provide a better user experience. There are plenty of filter extensions available but I would much rather work with the core code, hopefully to help others also improve their store. The first improvement I made was to change the logic from &qu...

Jump to post
  • Fri May 22, 2015 7:35 am
  • Replies 4
  • Views 2098
Re: Google AdWords Conversion Tracking code

badmonkeybotanicals wrote:Is it possible to execute a script on post-back from paypal instead of requiring a click to go back and receive the success message?
Yes, you can set up an auto return URL in your PayPal account.

https://www.paypal.com/au/cgi-bin/websc ... ry-outside

Jump to post
  • Wed May 20, 2015 8:03 pm
  • Replies 23
  • Views 47308
Re: Filter module opencart 1.5.5.1 - Guide?

It's a shame that nobody can help with the above. The default filter has the potential to be near perfect. However, a better user experience is required and for this to occur, filters that do not apply to the current product list need to be disabled or hidden. This is the manner in which any decent ...

Jump to post
  • Wed May 20, 2015 8:02 pm
  • Replies 109
  • Views 104989
Re: [How-to] Disable CKEditor

I just wanted to add an alternate method as I found disabling CKEditor completely caused issues with other modules. After many many hours of trying various solutions, I found the best method was to simply add the line below in the config file. This forces CKEditor into source mode by default. CKEDIT...

Jump to post
  • Sun May 17, 2015 3:22 pm
  • Replies 17
  • Views 6732

Search found 219 matches