I'm using opencart 1.5.5.1 with vQMOD
Is there any possibility or some extension like filter, to show products with specific option.
For example i have a shop with clothes. In option i save size like XS,S,L.
If i click some button like XS i want to see only clothes with XS size option.
Check this link
You Can Use Filters
http://code.tutsplus.com/tutorials/how-to-use-filters-in-opencart--cms-22594
Related
In a Shopify store on the page of product I have options to choose the size of the product.
Now the label for these options shows "The name of product" + word "Size" -
Example:
"Shoe Size".
How can I change this label to just "Size"?
If you go to this product in your Shopify admin, you should see that there are two option dimensions defined. I'm guessing that the option was set up as "Shoe Size" - if I'm right, you can edit the product's options to rename that to be simply "Size"
You'll need to find the product in your Shopify admin to make the change. It looks like the product ID is 1442529044055 from your screenshot, so the direct link to that product's admin page is [yourstore].myshopify.com/admin/products/1442529044055. You should see a section under Images labelled Variants. At the top of this area, there should be three links: Reorder Variants, Edit options, and Add Variant. If you click Edit Options, you should be able to rename the option dimensions of the product in question.
Let me know if this gets you moving in the right direction!
I'm building configurable products on my Magento site (a simple way of showing each of our textiles with the swatches of the different colors of the same item under the main product image) and I have associated simple products for each individual color.
I don't seem to be able to obtain the desired behavior from the site and I'm writing to ask if you have a suggestion that might solve my problem.
At the moment I experience this behavior: when filtering products through color-level attributes I get both the simple and configurable products in my result set. Once I do that if I click on a simple product I find myself the simple product detail page, which doesn't show the box with the other color swatches.. while I would like every product detail page to show the other colors of the same item.
The intended usage is very basic really but I can't figure out if Magento can achieve that on its own or if it will require extra code; what I need is:
1) all product detail pages to show all the color swatches
2) the result list when filtering by the color attribute (for example "whites") should show the correct color images of the individual colors, without duplicates (and not the main image for that product, which would probably be in the wrong color)
Do you have a suggestion of maybe know of a plugin to achieve this?
Thanks a lot,
Sergio
Sergio,
There are two features in particular that might help you solve your problem.
First:
Click to expand the Shopping Cart section. Then, set Configurable Product Image to one
of the following:
l Product Thumbnail Itself
l Parent Product Thumbnail
Second:
To prevent the associated products from being listed individually in the catalog, set Visibility to “Not Visible Individually.” Or in your case, you may decide to do it the other way around.
Please be aware that I was not able to get this feature to work myself.
I use a custom attribute which is shown as layered navigation (type=dropdown, use in filter navigation BUT without product count).
Everything is like it should be, but the frontend SHOWS the product count next to the filterable attribute. Anchor is on in Display Settings (Category).
I wonder if I forgot to set something or if my settings are overwritten...
Magento_AT version 1.9.0.1v1
(special language version based on MagentoCE 1.9.0.1
There are options Filterable (with results), it means show this filter if there are some associated products in the listing. Filterable (no results), it means show this filter always.
To hide product count try to modify template
app\design\frontend\base\default\template\catalog\layer\filter.phtml
(copy it to your custom theme first)
There is a way to hide the product count without modifying the template directly.
In Configuration/Catalog/Filter Navigation one can unselect show product count.
I’m wanting to build a Shop This Look page that will be easily editable and up-datable without too much hacking every time it’s updated.
Ideally I would like it to work like this: http://shop.crooksncastles.com/collections/shop-by-look-mens-look-2
In that I upload a photo of the look and then select the products to appear (Even if it’s through using their productids).
My thoughts on how to achieve this:
1) Create a category specifically for each look but have them set to hidden. Eg.
Looks>
* Look1
* Look2
* Look3
2) Then display the category in a static block on a CMS page. And then add the selected products to the look categories.
The idea is that a customer can select their size and add each product of the look on that page without leaving.
Is this the correct way to go about this?
Is there a better way to go about it?
I think the best way to do this would be to create your own module in app/local.
Also you should take a look at configurable products and their attributes, maybe that's enough for what you want.
The solution was to greater utilise the category function of magento.
I built two new themes within my template file one for category and one for product list.
The category structure I used was
SHOP THIS LOOK > LOOK 1
> LOOK 2
> LOOK 3
The template that was applied to the 'Shop This Look' parent category had all product list snippets removed and only displayed the images of the sub categories (Look 1, Look 2 and Look 3).
I then added the look image to each of the Look 1 - Look 3 categories and the products (via the category products tab).
The Look pages also had their own list.phtml file. That displayed the category (look) image on the left hand side, then a list of the products down the right hand side. I edited it so the product images / titles didn't link through to the product any more and added a 'View full product details' link at the bottom. This encourages people to add their products to the page from the look and remain on the page to add the rest of the look.
Another good way to look into buying a whole look as opposed to selecting individual options is bundled products.
Over all functionality is exactly how I wanted it. Updating is easy for a Magento layman and it looks great.
as an alternative approach you can check Altima Lookbook to create "Shop the look" experience.
It does it in a bit different way - allows you to place a slide (as part of slideshow) with multiple products linked with that slides as interactive tags, placed on top of actual image.
I have a large store with many products showing in multiple categories.
Inside each of these categories the product has a different use, so I would like to show a different image.
I would use a bundle / grouped product however the default simple product has custom options.
Any PHP or set up suggestions would be appreciated.
A clean implementation would be to add a new attribute to the media/gallery functionality (akin to label/sort-order).
Then you would add a drop-down category selector to the grid view on the "Manage Product > Edit Product > Images" tab.
Then from there, you could extend the standard collection for category/search to select your image with corresponding category ID (instead of the default selected thumbnail).
But you certainly are not going to find a 1-liner to pull this off (cleanly).