Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+9 votes
391 views
in Plugins by

Hi ...

I need your help, How can I hide this box at the bottom of the home page?

How can I hide this box at the bottom of the home page?

is there any plugin to help me doing that?

Q2A version: How can I hide this box at the bottom of the home page?

1 Answer

+3 votes
by
selected by
 
Best answer

Follow these steps:

1. Edit file qa-theme/<your-theme>/qa-theme.php

2. Add (or merge, if it already exists) the following function:

public function initialize() {
    parent::initialize();
    if ($this->request === '')
        unset($this->content['suggest_next']);
}
...