Search code examples
magentotabscategoriesproduct

Magento Product page open in new tab Target Blank


I am trying to find a way to open my website product page open in new tab. Please help me.


Solution

  • If you use custom theme, then check path:

    app/design/frontend/{your_namespace}/{your_theme}/template/catalog/product/list.phtml
    

    If you use rwd theme, then check path:

    app/design/frontend/rwd/default/template/catalog/product/list.phtml
    

    find any anchor link and add traget="_blank"

    <a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" class="product-image">
    

    change to:

    <a href="<?php echo $_product->getProductUrl() ?>" target="_blank" title="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" class="product-image">