how would i add video while making a new product or category.?and one more thing how would i upload pdf file of a catalog on cms page or home page.what would i have to do for it..?
please tell me because my work is on pending..
Hello sir,
If need to catalog attributes as "video," it will show in products detail page. For upload pdf file of a catalog on cms page or home page.we need to code/work on it.
Thanks
prevaj
<< Signature to be setup in profile >>
There are no of video product extensions available. Try your finger on Google.
http://www.magentocommerce.com/magento-connect/productvideo-by-niveus.html
http://www.magentocommerce.com/magento-connect/product-video-16.html
If you want to add video to Magento product page without using any Magento extension, you can do so by following the steps below.
First, Create “video” text input attribute. Add it to appropriate attribute set and reindex your data.
Go to the following file.
app/design/frontend/yourpackage/yourtheme/template/catalog/product/view.phtml
Find the following code in the above file.
<div class="product-name"> <h1><?php echo $_helper->productAttribute($_product, $_product->getName(), 'name') ?></h1> </div>
Now insert the following code just below the above line. It will add video under the product name.
<?php if($_product->getVideo()): ?> <iframe width="560" height="315" src="http://www.youtube.com/embed/<?php echo $_product->getVideo() ?>" frameborder="0" allowfullscreen></iframe> <?php endif; ?>
Now you just have to paste the video UID (Unique Identifier) into the video attribute field to display the video.
Not working your point.
Note : clear cache and reindexed.