Tag: BO
Removing the news feed from admin
by John on Jul.29, 2009, under Hints/Tips/Hacks
Your doing a prestashop site for a customer and want to remove the prestashop.com news feed that appears on the admin index page?
Well all you need to do is edit the index.php file in your admin folder and delete the following code.
/* News from PrestaShop website */
echo '
<h2>'.translate('PrestaShop live feed').'</h2>';
$isoDefault = Language::getIsoById(intval(Configuration::get('PS_LANG_DEFAULT')));
$isoUser = Language::getIsoById(intval($cookie->id_lang));
echo'<iframe frameborder="no" style="margin: 0px; padding: 0px; width: 780px; height: 380px;" src="http://www.prestashop.com/rss/news.php?v='._PS_VERSION_.'&lang='.$isoUser.'"></iframe>';
Customer registeration management module
by John on May.17, 2009, under Miscellaneous Modules
As soon a customer registers to the shop, he can not been logged while his registration is not approved from the back office.
In BO, approbation/refusal can be done from the customer display page.
List of pending approval and approbation/refusal action is available through this module configuration place.
Number of pending registration displayed in BO main page.
Mail alert sent to administratos on new registration to be validated.
Read about the module and download here


