What's the best way to have multiple groups of simple featured products in Magento? - magento

I would like to have a small number of pages on my site that have some text, and then an associated group of products eg, here is a picture of a nice kitchen, the things we sell that are included in this picture are below. I would like people to be able to click on the product and be taken to that product's page AND I plan to implement functionality that would allow you to add all of the products directly to the basket.
Caveat: All of my main product pages are of Configurable Products, and I would like to "Feature" certain Simple Products on the above pages, eg: this is a picture of a kitchen, we are using a blue lamp. This links directly to the "Lamp" page, but if you add this to basket, you'll get a blue lamp.
I have created the pages as Magento CMS pages and had created a specific inactive category of products for each page. This doesn't work because it links directly to the product in the inactive category, and not the actual category, eg: clicking wants to take you to /kitchinA/lampA.html instead of /lamps/lampA.html
What is the best way for me to include multiple groups of "featured" products, on different pages?

How about using related products?

Related

How to create different URLs for items in a drop down list on a product page?

I am not a coder, and I am working for a company involved in e-commerce activities, so please help me!
Currently we are looking to merge two different aspects of the business, where we will have the other company arms website detailing the product variations (i.e. Product A in sizes 1, 2, 3 and 4) on their page as separate enteries as part of their mission driven section, which link directly to our product page.
The issue we have is, on our website we have a drop down menu, and what we want to achieve is for the when the visitor selects the buy on the product page for Product A in Size 2 it links directly to our ecommerce page with a pre filled in drop down menu for that exact product selection.
Does anyone know how we could achieve this in Magento? Could this be done in custom URLs?
Thanks in advance!!
To preselect a simple product in a configurable product, the address of a simple product should look like this for example:
/mona-pullover-hoodlie.html#143=167&93=53
where /mona-pullover-hoodlie.html - configurable product URL,
143, 93 - attributes IDs,
167, 53 - option IDs.
In order to change the URL of simple products, you can create a Plugin (Interceptor) for Magento\Catalog\Model\Product::getProductUrl(), where to generate the URL as in the example above.
I made VCT Simple Product URL module on Magento Marketplace that solves this problem.

Preselect configurable product options based on simple product

This is a very similar question to this:
Preselect configurable product options by simple product URL
But the important part of the answer just points to a dead link.
There are a million pages that explain how to get the configurable product from the simple product, but not the configurable product with the options set to what would produce the simple product.
I need this for a couple areas. First, there's a section of the site that will programatically add the product to the cart based on SKU. It finds the simple product via SKU, and I can get its parent product, but I can't add that to the cart with the options that will point it to the simple product.
Secondly, I need the link that's generated for the simple product to show the page for it's configurable product, with the appropriate options selected since we're generating links for an external service that gets the links to all the simple product pages which are currently disabled.
I've looked everywhere but can't find how to get the configurable product options selected.

Why does Magento show the configurable products and its associated simple products as well?

On my online store, we sell jeans. The configurable products are the different types of jeans, and the associated simple products are the sizes for each (6,8,10,12,14). When i search for a product or just scroll on the feed it doesnt only show the configurable products and when i click it you can choose the size, but the individual simple products show up too eg:
Skinny Jeans
Skinny Jeans-6
Skinny Jeans-8 etc. How do i fix this?
For your simple products, you can set its Visibility. You can change it under
Product Information > General > Visibility > Not Visible Individually
This way they won't appear on front-end while still being associated with your configurable product.

Magento CMS Page as Category Landing Page

I have a problem deciding how to implement my category/cms page structure in Magento. It seems so over rigid in its design, even to the extent of adding custom fields to categories, I had to access phpmyadmin and hack it manually.
Ok, so consider this basic sitemap, with page types.
Home CMS PAGE
Shop Category
Just In Category
Clothes Category
Shoes Category
Accessories Category
Sale Category
So Home will be a CMS page, that is ok. Just In, Clothes and all other 3rd level categories will display a list or grid of products. Easy peasy.
My issue is with Shop. I need this to contain static blocks or widgets (cannot yet see the difference), and other elements such as a daily featured product, links to promotions etc. This page will not display a list/grid of products, that is not what I need.
If I create a CMS page called Shop, there is a conflict between breadcrumbing, url titles, and a bunch of other stuff.
My question is: how do I create a category called 'Shop' and make it behave like a CMS page with blocks of manageable widgets?
Under Admin -> Catalog -> Manage Categories, select a category and go to the Display Settings tab. Change Display Mode to Static Blocks Only and select the static block that you want to display on that page.
Another option is to use a Wordpress integration extension. Fishpig has one available for Magento.

Adding multiple items to special page

I have a quick how to question with Magento.
On my main site I need to have 7 links to special "categories" of items, but these don;t reflect categories of items. It is for a clothes shop so link may be to a summer wear page to only display items tagged as summer wear but from all types of item and categories.
What would the best way to go about creating this functionality?
I am assuming that when you say 'taged' you mean the product has a attribute set to 'summer'. In that case:
If you have products that you want to group together by attribute and list similar to a category page without being in a category, you could try using the Fishpig Splash Page extension:
http://fishpig.co.uk/attribute-splash-pages.html
This extensions allows product attributes to group products instead of categories.
I hope I understood your question correctly.
You can create categories for each of the 7 pages you mention, but hide them from the navigation in the category settings page.
you can then add your products to these categories as you see fit.
They will still be in their original categories too, but you can now link to the new pages and see them there too.
It seems like to me, you would just create the categories like normal. Because products can belong to many categories, you would just assign on a per-product basis which ones need to be in your categories.

Resources