kushalbhaktajoshi
kushalbhaktajoshi

Reputation: 4678

Template Overriding Opencart

I have developed a module that lets admin to select template for a specified date. But i have no idea how I can override the template automatically in the front-end. Help me out with this.

Upvotes: 1

Views: 656

Answers (1)

Jay Gilford
Jay Gilford

Reputation: 15151

You simply need to change the "config_template" value to the new on

$this->config->set('config_template', $new_value);

Upvotes: 2

Related Questions