Gwendall29
Forum Replies Created
-
Forum: Plugins
In reply to: Woocommerce Featured Products (Add Short DescriptionBikout.
You can add the short description excerpt if you modify the content-widget-product.php (template woocommerce).
After this :
<?php echo $product->get_price_html(); ?>
Add this :
<?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly global $post; if ( ! $post->post_excerpt ) return; ?> <div id="description"> <?php echo apply_filters( 'woocommerce_short_description', $post->post_excerpt ) ?> </div> <?php $max_caracteres=30; $description="Mon texte à réduire"; // Test si la longueur du texte dépasse la limite if (strlen($description)>$max_caracteres) { // Séléction du maximum de caractères $description = substr($description, 0, $max_caracteres); // Récupération de la position du dernier espace (afin déviter de tronquer un mot) $position_espace = strrpos($description, " "); $description = substr($description, 0, $position_espace); // Ajout des "..." $description = $description."..."; } ?> <div id="short_description"> <?php echo "$description"; ?> </div>
Forum: Plugins
In reply to: [PrestaShop Integration] Prestashop Integration in an articleOK, Thanks.
I’ll try it.Forum: Plugins
In reply to: [PrestaShop Integration] Prestashop Integration in an articleSorry. So in English.
Fran?ois
When i’m on my article (back-office), in the input “Prestashop Integration”, i put the ID of my product. That’s OK, it find it. But when i go in the raticle in front office, i haven’t a link with my product in Prestashop. How can I do ?
I must add a widget “Prestashop Integration Products” in a sidebar in the template “article” ?Thanks for Help !
Gwendall
Forum: Plugins
In reply to: [PrestaShop Integration] Prestashop Integration in an articleFran?ois,
Je me permet de t’écrire en fran?ais car mon anglais n’est pas “fluent” et vu qu’apparemment tu es fran?ais, ce sera beaucoup plus facile !
Lorsque je suis sur mon article (back-office), dans le champ du bloc “Prestashop Integration”, j’ai mis l’id de mon produit. Après avoir ajouter, il l’a bien trouvé. Mais lorsque je vais sur mon article (en front-office), je n’ai pas de lien qui mène vers mon produit.
Comment fait-on ? Il faut rajouter un sidebar en fin de template article avec insertion d’un widget “Prestashop Integration Products” ?
Et encore merci pour ton aide.Gwendall