Reputation: 439
Im trying to over ride
/app/design/frontend/base/default/template/paypal/partner/logo.phtml
in my custom template called MyTemplate do I copy
paypal/partner/logo.phtml
under
app/design/frontend/default/MyTemplate/template/
?
Upvotes: 1
Views: 2001
Reputation: 166046
There's multiple ways to pull this off, and the team behind Magento is neutral on "the right" way to do things, but the simplest way to "replace" a template is to copy the base template to the same location in your theme's template folder.
app/design/frontend/base/default/template/paypal/partner/logo.phtml
app/design/frontend/default/mytemplate/template/paypal/partner/logo.phtml
Upvotes: 4