Search code examples
opencartopencart-3

how to remove advertisement in opencart admin panel


How to remove opencart Advertisement in admin panel.

Here you see the Adverisement:

Advertisement that I want to remove


Solution

  • In your OpenCart installation go to file

    /admin/controller/extension/extension/promotion.php

    and add replace this code on line 18

    return $response;
    

    with this

    return '';
    

    This will remove any promotion you see in your OpenCart admin panel.

    Enjoy!