How to Remove Copyright Content from the Footer in Purpletree Mobile App

If you want to remove the copyright content from the footer in your Purpletree OpenCart Mobile App, you can do so by updating a specific variable in the language file. Follow these steps to ensure the copyright information is no longer displayed:

Access the Language File

1. Locate the File Path
   - Go to the directory where your language files are stored: `catalog/language/(language code)/common/footer.php`.
   - Replace `(language code)` with the appropriate code for your language, such as `en` for English.

2. Open the Language File
   - Use a text editor or an Integrated Development Environment (IDE) to open `footer.php`.

copyright opencart app

Modify the Footer Variable

1. Find the Variable
   - Search for the line that contains the variable `$_['text_powered']`.

2. Update the Variable Value
   - Modify this line to set the variable to an empty string:
     ```php
     $_['text_powered'] = "";
     ```
   - This change will effectively remove the copyright text from the footer.

Save Changes

1. Save the File
   - After making the change, save the `footer.php` file to apply the updates.

2. Clear Cache (if applicable)
   - Depending on your setup, you may need to clear the cache for the changes to take effect. Check your OpenCart admin panel for caching options or clear any server-side caches.

Verify the Changes

1. Check the Mobile App
   - Open the mobile app to ensure that the copyright content has been removed from the footer.

2. Review on Different Devices
   - It's a good practice to check the app on different devices to confirm that the footer appears as expected.

By following these steps, you will successfully remove the copyright content from the footer of the Purpletree OpenCart Mobile App, providing a cleaner look as per your requirements.