Search found 20 matches

Page 1 of 1

Search found 20 matches

Re: [RELEASED] Override Engine for OpenCart

Something like this is what I've built in-house. The only problem I have is it replacing the core files. Right now I use VQMod to modify the core files and keep my override system separated. How's the upgrade process with this system? Looks great, I'll see for my next project what the options are fo...

Jump to post
  • Wed Oct 24, 2012 6:46 am
  • Replies 320
  • Views 199970
Re: VQMod patch failing

<file name="system/engine/front.php"> <operation error="log"> <search position="after"><![CDATA[public function dispatch($action, $error) {]]></search> <add><![CDATA[$this->addPreAction(new Action('common/xen_seo_url'));]]></add> </operation> </file> O0 Feels hackish, ...

Jump to post
  • Sat Oct 13, 2012 1:05 am
  • Replies 9
  • Views 3012
Re: Combining OpenCart with Wordpress

I plan to open all my modification (hacks really) on a site sometime soon. I made a new onepage.php controller file and basically merged all the functions into one file, and also made a few new .tpl files for the views. The language is used from the guest checkout lang files, but I manually overrode...

Jump to post
  • Sun Feb 14, 2010 3:47 am
  • Replies 59
  • Views 92319
Re: Installing Modules, Future Upgrades to OpenCart, etc

Of course always backup the database and code before upgrading, the point is that for the custom functionality of one of my Open Cart clients, I had to modify so much of the core for true SEO and canonical URLs that work with breadcrumbs, modified home page, and one page checkout... Now we're doing ...

Jump to post
  • Sat Feb 13, 2010 9:08 am
  • Replies 13
  • Views 5129
Re: E-gift voucher

I'm creating it to emulate an iTunes gift card of sorts... i'd like to make it modular and flexible and then release it maybe, but i'm still waiting for some type of plugin system to built into open cart. That way I would actually bother to upgrade... right now all my Open Cart sites are hacked in s...

Jump to post
  • Sat Feb 13, 2010 8:47 am
  • Replies 11
  • Views 6068
Re: Combining OpenCart with Wordpress

Grab the RSS feed from your WordPress install using SimpleXML, then parse and display the feed however you like from your OpenCart - caching of course. Still, this is a lot of overhead but if anyone is looking for a quick and hackish way to get the job done this is one option. I'd also cache the po...

Jump to post
  • Sat Feb 13, 2010 8:45 am
  • Replies 59
  • Views 92319
Re: Combining OpenCart with Wordpress

So far I've gotten wordpress to pull in customer login information from OpenCart by including the bare minimum requirements for /system/library/customer.php Here's what I include in my wordpress header.php: require_once('./shop/config.php'); //require_once(DIR_SYSTEM . 'startup.php'); require_once(D...

Jump to post
  • Sun Feb 07, 2010 7:59 pm
  • Replies 59
  • Views 92319
Re: FREE UPS Module - no UPS API Key needed, doesn't use XML

Can we delete that contrib?

I don't want people being misled

Jump to post
  • Fri Jan 15, 2010 5:42 am
  • Replies 3
  • Views 1948
Re: Error with coupon code

The coupon doesn't get calculated until the confirmation page, which is a bit misleading so I added a message saying that you're discount will be applied in the last step before checkout...

Jump to post
  • Mon Jan 04, 2010 10:50 pm
  • Replies 24
  • Views 5441
Re: Error with coupon code

I've been through the entire coupon model and cart.php / cart.tpl... There is no place where a discount is applied. Basically model/checkout/coupon.php checks if the coupon can be applied, then returns the coupon data. After that controller/checkout/cart.php checks if $coupon is false, and if it's n...

Jump to post
  • Mon Jan 04, 2010 7:29 pm
  • Replies 24
  • Views 5441
Re: Error with coupon code

I'm having a similar problem... except it says success your coupon has been applied! There is no discount showing up however. I've tried using one product, letting it apply to all products by choosing none, percentage, fixed value... nothing works. I've tried -10.00, 10.00, nothing... Any idea what ...

Jump to post
  • Mon Jan 04, 2010 6:00 pm
  • Replies 24
  • Views 5441
Re: FREE UPS Module - no UPS API Key needed, doesn't use XML

Thanks for the heads up. If my client were willing to pay I'd call it a day and buy yours, but I'm contracted to make UPS work. There's a pretty good start and I can draw from the USPS module. I'm thinking of incorporating that open source class that's out there, just type in UPS php class, it does ...

Jump to post
  • Fri Jan 01, 2010 9:15 am
  • Replies 3
  • Views 1948
Re: E-gift voucher

I will be doing this shortly

Jump to post
  • Thu Dec 31, 2009 10:44 pm
  • Replies 11
  • Views 6068
FREE UPS Module - no UPS API Key needed, doesn't use XML

http://www.opencart.com/index.php?route ... ion_id=331

O0

Please help me bug test. It's no where near as elegant as Qphoric's module but it works and you don't need an API key, or a UPS account.

Jump to post
  • Thu Dec 31, 2009 10:43 pm
  • Replies 3
  • Views 1948
Re: Gift vouchers

I also need this functionality for a client. Right now I'm going to use the ideas above until I program something more elegant.

Jump to post
  • Mon Dec 21, 2009 2:30 pm
  • Replies 6
  • Views 2538
Re: Installing Modules, Future Upgrades to OpenCart, etc

I don't see the difference between the opencart vs kohana breakdown. The differnce is that the modules folders are in a different place so they're not touched by upgrades or other modules. Also the way libraries are included allows you to override core functionality. You'd still have to take some c...

Jump to post
  • Mon Dec 21, 2009 1:54 am
  • Replies 13
  • Views 5129
Re: Extending OpenCart

You should have looked in "catalog/controller/common/home.php" (line 29): foreach ($this->model_catalog_product->getLatestProducts(8) as $result) { Yea I did, that's where I found that those products are loaded from the product model. Thanks for all the replies, I'm reading those threads ...

Jump to post
  • Mon Dec 21, 2009 1:16 am
  • Replies 20
  • Views 7851
Re: Installing Modules, Future Upgrades to OpenCart, etc

About using Kohana, it would be a benefit because the cascading file system is a bit different than in open cart. OpenCart: /catalog/controller/common/home.php /catalog/view/common/home.php /catalog/model/catalog/category.php Kohana: In Kohana, each module folder has it's own controller, library, he...

Jump to post
  • Mon Dec 21, 2009 1:05 am
  • Replies 13
  • Views 5129
Re: Extending OpenCart

Yes I've just gotten done with a round of hacking, had to edit the products model (catalog/model/catalog/product.php) so I could show the 4 latest products from our 5 most popular categories, and including all their children so that was a good couple of hours. What I'm doing is adding a commented li...

Jump to post
  • Sun Dec 20, 2009 10:04 pm
  • Replies 20
  • Views 7851
Extending OpenCart

Hi all, I'm new to the community but am a PHP dev myself and am adding OpenCart to my list of weapons :P I like the MVC structure, code looks clean! I was wondering, is it a custom made framework or a spin-off of some other MVC styled framework? In any case, I'm having trouble finding a good way to ...

Jump to post
  • Sun Dec 20, 2009 3:03 pm
  • Replies 20
  • Views 7851

Page 1 of 1

Search found 20 matches