Jump to content

togliere "powered by prestashop"


Recommended Posts

ciao a tutti,

come posso togliere "powered by prestashop" nel footer?
non trovo il menu nel BO per editare quel footer (o meglio, si trova solo quello per togliere o aggiungere le voci del bocco informazioni (legal notice, about us.. etc..) ma non le altre voci..

suggerimenti?

ciao
grazie

Link to comment
Share on other sites

><!-- MODULE Block various links -->
</pre>
<ul>
{l s='Specials' mod='blockvariouslinks'}
{l s='New products' mod='blockvariouslinks'}
{l s='Top sellers' mod='blockvariouslinks'}
{l s='Contact us' mod='blockvariouslinks'}
   {foreach from=$cmslinks item=cmslink}
{$cmslink.meta_title|escape:'htmlall':'UTF-8'}
   {/foreach}
{l s='Powered by' mod='blockvariouslinks'} PrestaShop™
</ul>
<br><!-- /MODULE Block various links 



questo è il codice del block various link, sostituiscilo con questo sotto

><!-- MODULE Block various links -->
</pre>
<ul>
{l s='Specials' mod='blockvariouslinks'}
{l s='New products' mod='blockvariouslinks'}
{l s='Top sellers' mod='blockvariouslinks'}
{l s='Contact us' mod='blockvariouslinks'}
   {foreach from=$cmslinks item=cmslink}
{$cmslink.meta_title|escape:'htmlall':'UTF-8'}
   {/foreach}
   <!--{l s='Powered by' mod='blockvariouslinks'} PrestaShop™-->
</ul>
<br><!-- /MODULE Block various links 

Link to comment
Share on other sites

  • 2 weeks later...
  • 7 months later...
ciao a tutti,

come posso togliere "powered by prestashop" nel footer?
non trovo il menu nel BO per editare quel footer (o meglio, si trova solo quello per togliere o aggiungere le voci del bocco informazioni (legal notice, about us.. etc..) ma non le altre voci..

suggerimenti?

ciao
grazie


vai nel blockvariouslink dentro al tema e modifichi il tpl cosi:

<!-- MODULE Block various links -->

{l s='' mod='blockvariouslinks'}


<!-- /MODULE Block various links -->

salvi e sovrascrivi
Link to comment
Share on other sites

  • 2 months later...
  • 2 weeks later...
  • 3 weeks later...
ciao a tutti,

come posso togliere "powered by prestashop" nel footer?
non trovo il menu nel BO per editare quel footer (o meglio, si trova solo quello per togliere o aggiungere le voci del bocco informazioni (legal notice, about us.. etc..) ma non le altre voci..

suggerimenti?

ciao
grazie


vai nel blockvariouslink dentro al tema e modifichi il tpl cosi:

<!-- MODULE Block various links -->

{l s='' mod='blockvariouslinks'}


<!-- /MODULE Block various links -->

salvi e sovrascrivi




come e possibile che non ho la cartella blockvariouslink?
Link to comment
Share on other sites

ciao a tutti,

come posso togliere "powered by prestashop" nel footer?
non trovo il menu nel BO per editare quel footer (o meglio, si trova solo quello per togliere o aggiungere le voci del bocco informazioni (legal notice, about us.. etc..) ma non le altre voci..

suggerimenti?

ciao
grazie


vai nel blockvariouslink dentro al tema e modifichi il tpl cosi:

<!-- MODULE Block various links -->

{l s='' mod='blockvariouslinks'}


<!-- /MODULE Block various links -->

salvi e sovrascrivi




come e possibile che non ho la cartella blockvariouslink?





nemmeno io cè l ho?
come si deve fare?
Link to comment
Share on other sites

Oppure, sempre nella 1.4, in alcuni temi tale link viene messo diretamente nel footer.tpl del tema stesso.

questo il mio footer
e non ce nulla
<?php
/*
* 2007-2011 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author PrestaShop SA
* @copyright 2007-2011 PrestaShop SA
* @version Release: $Revision: 1.4 $
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/

$controller = new FrontController();
$controller->displayFooter();
Link to comment
Share on other sites

Oppure, sempre nella 1.4, in alcuni temi tale link viene messo diretamente nel footer.tpl del tema stesso.


{*
* 2007-2011 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author PrestaShop SA
* @copyright 2007-2011 PrestaShop SA
* @version Release: $Revision: 1.4 $
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*}

{if !$content_only}


<!-- Right -->

{$HOOK_RIGHT_COLUMN}



<!-- Footer -->
{$HOOK_FOOTER}


{/if}
</body>
</html>
Link to comment
Share on other sites

Vedo che alla fine il blockcms.tpl lo hai trovato!

Ora entra nel BO e trova dove dire a smarty di ricompilare il codice. Finchè sei in test/sviluppo lascialp così, ma ricordati di ripristinarlo quando il sito entra in produzione (questione di performance).

Bye

Link to comment
Share on other sites

Vedo che alla fine il blockcms.tpl lo hai trovato!

Ora entra nel BO e trova dove dire a smarty di ricompilare il codice. Finchè sei in test/sviluppo lascialp così, ma ricordati di ripristinarlo quando il sito entra in produzione (questione di performance).

Bye


mi spieghi come fare non capisco dove dire a smarty
Link to comment
Share on other sites

  • 3 months later...
  • 1 year later...
  • 8 months later...

nelle email che vengono mandate compare Prestashop. Come possiamo eliminarlo?

Mi piacerebbe toglierlo anche nel BO .. sapete come si fa?

Grazie

Se si intende il "Powered by PrestaShop" che è presente in ogni e-mail bisogna modificare ogni singolo documento .html delle e-mail tramite FTP.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...