Jump to content

[Solved] How do I move the blockpayment module to the right column?


Recommended Posts

Anyone know how to do that? Right now, its stretching out my page. So I am either going to disable it or move it over (would rather move it over)

When you go into translation, it is greyed out.


Solved it

In the blockpaymentlogo.php file, change this:

function install()
   {
       if (!parent::install())
           return false;
       if (!$this->registerHook('leftColumn'))
           return false;
       return true;
   }



to this:

function install()
   {
       if (!parent::install())
           return false;
       if (!$this->registerHook('rightColumn'))
           return true;
   }




Remember, after you change the code, uninstall it and reinstall it. It should work.

Enjoy.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...