I am working on a small commerce site and am attempting to do the following.
The site will be run on expression engine and I’d like to use Magento as well. I’d like there to be a section on the homepage of the site that includes the newest items that have been added to the store. The containing div would house 7 - 9 products, with an image, description, price, and add to cart link. Really simple. The items would be listed from left to right, with thumbnails sitting above the description/pricing/cart text. When the user selects an item, it brings them to the item within the Magento section of the website. Here they can make the purchase, browse for other items, etc.
So, my question is, how do I include this list of items in the EE site framework? Something like an iFrame with a call to a template page that only includes the items mentioned above?
Sorry for the late reply. An example of EE pulling Magento products? I don’t think there is any. You would need to install the Magpie RSS/Atom Parser plugin for EE.
After you do that, enable RSS feeds in Magento by going to System -> Config -> Catalog -> RSS Feeds. Set Enable RSS to Enabled under RSS Config and New Products to Enabled under Catalog. You’ll want to clear the system cache after you do that.
Then just need to follow the examples on the plugin page to grab specific data:
Available data you can pull is title, link, and description. The description contains an image of the product as well.
With a little PHP knowledge or working understanding of EE, you could also create a plugin that would pull the image out since it is included with the description since you mentioned you wanted to pull the image as well. Because the image is part of the description (along with some HTML that would need to be stripped so you could format it as you wanted), a plugin would be needed.
You’d most likely have to hire someone to do this, but it’d only be a couple lines of code and probably about $50-75 (that’s what I would charge at least).