change Product Detail page in magento? [closed] - magento

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
I want functionality of my product detail page like :
http://en.edelices.com/foies-gras-truffles/goose-foie-gras/millefeuille-whole-goose-foie-gras-truffles-fresh.html.
I have done other part but. how to add product in different Weight with different image and when select radio button change the image of product.
Thanks.

Create each product as a configurable and several simple products. Each simple product can have it's own price, weight and image. Use an extension to dynamically switch images between those simple ones.

Related

In magento i need to display a logo image in selected product page [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
In magento i need to display a logo image in product page and have to restrict its display for certain products using attribute from admin.
Create one attribute [Ex-logo display?]with drop-down and assign to attribute set
set option value yes and no and go to the manage product and set to yes in product to
display logo
and in view.phtml put condition $_product->getData('logo_display')==1 **then display
your logo image**
otherwise not

How to show products Quality rating only in magento? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I need to show quality rating only in Magento product page. Now its showing Quality, Price and Value, here I want to hide Price and value in front end.
You can manage the displayed ratings in backend. Go to Catalog > Reviews and Ratings > Manage Ratings and remove Price and Value.

Magento quick search not returning all returning all products [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I've searched a keyword e.g "smartwash" there supposed to be 2 items but it's showing 1 items only but the count on the toolbar is right. My magento version is 1.4.2
Thanks
Several things to check:
Does the product's visibility allow it to be visible in search?
Is the product enabled?
Is the product in stock (Or are out of stock items set to be viewable)?
Does the product have a price and tax options?
If it's configurable or bundle, does it have child products/options that are in stock/enabled?
Have you reindex the Catalog Search Index?
Have you cleared the Page and Block caches?
Fixed it! I added this code on the start of my result.phtml :
$_productCollection=$this->_getProductCollection()

How to display the featured image of a page in the page itself automatically in WordPress? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
Please i need your help with the following.
The features images that i am setting for my pages are not getting displayed in the pages themselves. Is there any plugin or something i can do in order to let those featured images that i am setting for posts and pages to get displayed inside the corresponding entry?
Any suggestions are greatly appreciated!
Put:
<?php
if ( has_post_thumbnail() ) {
the_post_thumbnail();
} ?>
in the template where you want the featured image to display.

Magento backend - manage products - move qty field in the general tab [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I would like to know if there is a way in Magento (1.5) to move the qty field from backend catalog/manage products/inventory tab to catalog/manage products/general tab.
Thank you by advance.
Zard, the stock information is not exactly part of the Product, but from the ProductStock. So, you cannot reorder the fields using the Attribute Set Manager.
In order to do what you want, you are going to need to add some code (to hide the field in the inventory tab, and to show it in the general tab). If you keep the input's name, then the controller should just handle the data.

Resources