i am using a market place i want to show vendor information on product view page on right side , this is the market place support team said to follow but its not clear can you help me ,
show vendor detail on product view page. You can preprare your phtml file in which you need to get vendor id from product information by first loading product model like this:
Related
I am looking if Magento can offer me a product type that's can be viewed not downloaded, for example I have a video and I want the user to pay first then he can watch it? is this possible product type in Magento?
Thank you,
Not out of the box.
You can make it as a normal product that a user ads to bag and after the customer buys it at checkout you redirect to the page with the video.
Or on success page you will provide them with a link to the video, which is otherwise unreachable. Additionally you can put a check in that page and ask the customer to insert the order number to view it.
I want to add a product that is not held on my magento website. It must only show on my website. But when a customer clicks on a product it directly goes to the website that holds the product.
I want to give the URL to the product on the site. I am not sure how to do this. Please help me. Thanks.
Here are some screen shots that show what I actually want to do:
product show on my website
Customer goes to other website
The way i would suggest you is to create an attribute called external_url, a textinput field. Assign it to required attribute sets then, while adding product if that particular product will be linked to external; input that field with external url.
And while populating product in listings, check if that external_url attribute value exists or not. (for eg on template/catalog/product/list.phtml check for this value $_product->getData('external_url'))
If the value exists then, change the product link(on product list.phtml change $_product->getProductUrl() with our $_product->getData('external_url'))
I am wondering how can I delete this two divs -
in Magento catalog, but only for specific product type. In short, I would like to have product type which would appear in catalog only with product-image and product-name, without - price, Out of stock, Add to Wishlist, Add to Compare.
It's possible to load different layout updates depending on loaded product type. You can see an example of how it's done in Magento for configurable products here: https://github.com/LokeyCoding/magento-mirror/blob/magento-1.7/app/design/frontend/base/default/layout/catalog.xml#L275-L287
It's possible because view action of product controller makes this to be executed: https://github.com/LokeyCoding/magento-mirror/blob/magento-1.7/app/code/core/Mage/Catalog/Helper/Product/View.php#L59-L60
You can change the design for any product from the admin.
You need to create a separate theme with a different product page which will have only the attributes you would like.
Then you can select the design for that specific product. Please see the screenshot, how you can change design for any product
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.
I've just started using CS Cart and I have a product which has been built using the product configurator and I would like to show the image thumbnail next to each radio button.
What code do I need to use to pull the product thumbnail?
This is the current code I'm playing around with, but it is pulling the main image rather than the product image from the associated product in the configurator:
{include file="common_templates/image.tpl" images=$product.main_pair
object_type="detailed_product" link_class="cm-thumbnails-mini cm-cur-item"
image_width=$th_size image_height=$th_size show_thumbnail="Y" show_detailed_link=false
make_box=true obj_id="`$product.product_id`_`$img_id`_mini" wrap_image=true}
P.S. I would have posted this on the CS Cart forums but can't seem to be able to register on there!
$product is the main product. Find the variable that populates the products information (look for the code that generates the forms within the tabs.