Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Bikout.

    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>

    Thread Starter Gwendall29

    (@gwendall29)

    OK, Thanks.
    I’ll try it.

    Thread Starter Gwendall29

    (@gwendall29)

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

    Thread Starter Gwendall29

    (@gwendall29)

    Fran?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

Viewing 4 replies - 1 through 4 (of 4 total)