How to disable prestashop news
To disable PrestaShop news, you can follow these steps:
Method 1: Disable News Module
- Log in to your PrestaShop admin dashboard.
- Go to Modules > Modules.
- Find the News module and click on the Configure button.
- In the News module configuration page, toggle the Active switch to Off.
- Click Save to save the changes.
Method 2: Disable News Block
- Log in to your PrestaShop admin dashboard.
- Go to Modules > Blocks.
- Find the News block and click on the Configure button.
- In the News block configuration page, toggle the Active switch to Off.
- Click Save to save the changes.
Method 3: Disable News in Theme Settings
- Log in to your PrestaShop admin dashboard.
- Go to Preferences > Themes.
- Click on the Configure button next to your active theme.
- In the theme configuration page, scroll down to the Layout section.
- Find the News option and toggle the Display news switch to Off.
- Click Save to save the changes.
Method 4: Disable News using PHP
- Log in to your PrestaShop admin dashboard.
- Go to Advanced Parameters > Performance.
- In the Performance page, click on the PHP tab.
- In the PHP tab, add the following code to the Additional PHP files field:
<?php if (!defined('_PS_VERSION_')) { exit; } Configuration::updateValue('PS_NEWS_ACTIVE', false); ?>
- Click Save to save the changes.
After disabling the news, you should no longer see the news block on your PrestaShop store's front-end.