Bob R
Bob R

Reputation: 439

Over Ride Magento app/design/frontend/base/default/template in Custom Template

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

Answers (1)

Alana Storm
Alana Storm

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

Related Questions