We’ve just launched PeaceLoveAndMomminess.com, a nice little magazine site for moms & ladies with mom-type interests.
cart url: http://peaceloveandmomminess.com/shop_categories/
This was built using EE, with cart duties handled by FoxEE and Foxycart. Some of the font stuff is sIFR, there’s a little jQuery thrown in for good measure, and plenty of extensions & plugins abound. Anyway, my favorite part is the fact that my client really enjoys the site, enjoys working with the backend… the fact that we could offer her so much of what she wanted without having to sacrifice based on the system.
Oh, and note the commenting system that features “flair” buttons. ‘S kinda fun.
One note about FoxEE, on the negative side, and that is we had to hack the core to activate the addtocart_begin function which is in the code, but commented out. We had to add that back in because we needed to do some fancy stuff to the way the products behaved: detail rollovers, clickable color options, graphics for options rather than drop down boxes. The problem we had is that there wasn’t enough detail in the options themselves to target them easily using jQuery. We ended up outputting our own input code for each product:
<input id="color_choice_{entry_id}" name="color_choice" type="hidden" value="">
so that we could split off the last chunk, the entry_id, and then manipulate other elements on the page, and then manipulated other elements of the HTML as well. If FoxEE would output the unique sku of each product as something like id=“prodsku_123” then it’d be pretty easy to manipulate everything via JS, rather than having to make our own hacks. Or make the addtocart_begin function available for reals.
That nitpick aside, our client has enjoyed working with it just fine, and after I learned that the addtocart_begin function was available in the core already (just commented out) my life got a lot easier as well. I’ll use it again. There are some other things I’d like to see from FoxEE to make it easier for our clients to make changes, but for now I’ll just be happy with what I have.
