Jump to content

[RESOLU]Modifier le nom PRIX REDUIT!


Recommended Posts

Bonjour,

Comme l'indique le titre, je voudrais savoir s'il est possible de modifier le nom PRIX REDUIT! et mettre à la place PRIX EN PROMOTION par exemple.
Par ailleurs, est-il possible d'augmenter la taille du prix barré. -> voir piece jointe

Pour info: pour afficher le prix reduit, j'ai ete dans la fiche produit et j'ai mis un montant dans l'onglet "réduction"
-> voir piece jointe.

Merci pour vos réponses.

18660_0JkkD5uLbMYLHREExIDb_t

18661_31v52DQb53VIRWJQsOel_t

Link to comment
Share on other sites

Bonjour,

Je débute moi aussi, alors pas taper hein ? :)

D'après ce que j'ai lu sur le forum voici la marche à suivre

Pour augmenter la taille de tes prix barré
Tu dois aller dans le fichier global.css et modifier la taille de ta fonte de caractère
prestashop/themes/prestashop/css.global.css

#primary_block form#buy_block p#old_price {
font-size:0.8em;
text-align:right;
text-decoration:line-through;
}



Télécharge le plug-in FireBug sur firefox, il te montrera où modifier ton global.css
Tu as un super tuto de la PrestaTeam ici:
http://www.prestashop.com/forums/viewthread/16736/graphisme/tuto_installation_et_utilisation_de_firebug_pour_modifications_du_template_couleurs_images__dot__dot__dot_

Link to comment
Share on other sites

Merci beaucoup pour ta réponse
Je viens de tester ca marche nikel !!!!
Pour info: Le texte a change se trouve à la ligne 1961, pour evitez aux autres de cherchez lol ;-)

Je laisse le sujet ouvert pour la question concernant le changement du nom PRIX REDUIT !

Vive la communauté Prestashop !!

Link to comment
Share on other sites

Celle-ci est à ma portée.

Dans Back Office --> onglet Outils --> Menu Traductions
Cliquez sur le drapeau Français
Puis déplier tous les blocs, ou alors juste les blocs Product et Product-list.

ya plus qu'à changer 'PRIX REDUIT !' par l'expression de votre choix.

a+

PS : Vais-je gagner mon premier [RESOLU] ?

Link to comment
Share on other sites

Minute papillon :)

Pour intervertir de place le prix barré et le prix avec promo, voici une méthode (je ne sais pas si elle est pro):
Tu vas dans ton fichier product.tpl qui se trouve dans ton tiroir themes/prestashop
Tu intervertis de places ces 2 blocks

{if $product->reduction_percent != 0 && ($product->reduction_from == $product->reduction_to OR ($smarty.now|date_format:'%Y-%m-%d' <= $product->reduction_to && $smarty.now|date_format:'%Y-%m-%d' >= $product->reduction_from))}

{l s='(price reduced by'} {$product->reduction_percent|floatval} %{l s=')'}
{/if}
{if ($product->reduction_price != 0 || $product->reduction_percent != 0) && ($product->reduction_from == $product->reduction_to OR ($smarty.now|date_format:'%Y-%m-%d' <= $product->reduction_to && $smarty.now|date_format:'%Y-%m-%d' >= $product->reduction_from))}


{if !$priceDisplay || $priceDisplay == 2}
{convertPrice price=$product->getPriceWithoutReduct()}
{l s='tax incl.'}
{/if}
{if $priceDisplay == 1}
{convertPrice price=$product->getPriceWithoutReduct(true)}
{l s='tax excl.'}
{/if}


{/if}



Et le block

<!-- prices -->



{if $product->on_sale}

{l s='On sale!'}
{elseif ($product->reduction_price != 0 || $product->reduction_percent != 0) && ($product->reduction_from == $product->reduction_to OR ($smarty.now|date_format:'%Y-%m-%d' <= $product->reduction_to && $smarty.now|date_format:'%Y-%m-%d' >= $product->reduction_from))}
{l s='Price lowered!'}
{/if}



{if !$priceDisplay || $priceDisplay == 2}
{convertPrice price=$product->getPrice(true, $smarty.const.NULL)}
{l s='tax incl.'}
{/if}
{if $priceDisplay == 1}
{convertPrice price=$product->getPrice(false, $smarty.const.NULL)}
{l s='tax excl.'}
{/if}

{if $priceDisplay == 2}


{convertPrice price=$product->getPrice(false, $smarty.const.NULL)} {l s='tax excl.'}
{/if}


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...