Archive: phtml

 

Posts Tagged ‘phtml’


Hi all, Some time we use IE to access magento, when add cart we can have twice items on cart. To sloved that issue you can follow instruction: Open file ../template/catalog/prduct/view/addtocart.phtml in your template and find command with onclick=”productAddToCartForm.submit();” Replace that string by onclick=”productAddToCartForm.submit(); return false;” Then upload and refresh you site. Maybe without return false; IE will [...]



 

@adammccombs I even restored the original code for newsletter.phtml or whatever it is. Any direction for me? Love magento but it's intense! @adammccombs I even restored the original code for newsletter.phtml or whatever it is. Any direction for me? Love magento but it’s intense! Possibly Related Posts: RT @TweetSmarter: 7 Free Tools For Integrating #Twitter [...]



 

by Dx3Webs (Posted Wed, 06 Oct 2010 14:31:52 GMT)i have also see code run on success.phtml which pulls out last order info then fires it off to where ever. http://magento-forum.co.uk/viewtopic.php?f=5&t=427#p1598 Magento Forum Possibly Related Posts: RT @TweetSmarter: 7 Free Tools For Integrating #Twitter With Your WordPress Blog: http://t.co/rZEwfLPx RT @_Magento_ Magento Template & WordPress Theme [...]



 

I have this code in my view.phtml file which displays a list of all the products categories: <?php $catIds = $_product->getCategoryIds(); foreach($catIds as $catId) { $category = Mage::getModel(‘catalog/category’)->load($catId); echo $category->getName(); } ?> Instead of displaying the category list in view.phtml I would like to display it in tabs.phtml. Tabs.phtml displays additional product information at the [...]



 

Hello, thanks for actually clicking on this.. I’m having trouble figuring out how to move Additional Information Tab. It is attached to Product Description through: <?php echo $this->getChildHtml(\’info_tabs\’) ?> located in View.phtml. After figuring out how to remove Product Description that is connected to Additional Information, I then need to simply swap positions with Quick [...]



 

I’m having trouble swapping Short Description (Quick Overview) with Additional Information (Attributes) Here’s an image better explaining what I’m trying to accomplish: I posted links to CodePaste.net Here is my View.PHTML Here is my Attributes.PHTML Here is my Tabs.PHTML Here is my Catalog.XML I know most files posted are not involved, but I figured it [...]



 

Hey all, I am still learning the Magento workflow. I currently am running a customized version of the blank theme, using the 2 Column ride sidebar layout. I am trying to move the mini Top Search that is part of the default. In header.phtml I find: <?php echo $this->getChildHtml(‘topSearch’) ?> I am trying to move [...]



 

I am running a store on Magento. For some reason the “Recently Viewed”, “Related Items” and “Featured Items” blocks have all disappeared from my site. They where definitely there yesterday so I’m not sure what’s happened to them. Featured Products is an extension I use and show on the home page using: {{block type=”featuredproducts/listing” template=”inchoo/block_featured_products_main.phtml”}} [...]



 

by royb121 (Posted Sat, 06 Mar 2010 15:15:27 GMT)I’ve edited the top navigation in top.phtml and added a link however I wondered how to rearrange the order. So I can add the tab at the end of the row? http://magento-forum.co.uk/viewtopic.php?f=3&t=132#p463 Magento Forum Possibly Related Posts: RT @TweetSmarter: 7 Free Tools For Integrating #Twitter With Your [...]



 

This is a work-in-progress. Help making this article great is requested. The following was done with Magento v1.3.2.4. I’ve been reading up on Magento’s packages and themes for a little while now. For the life of me, I can’t get a secondary theme to work. So I created a whole new package. How to create [...]