velphia
Forum Replies Created
-
Forum: Plugins
In reply to: [Data Source for Contact Form 7] Single quotes in meta keysWow, that was fast, thank you very much!
All the best
Forum: Plugins
In reply to: [Email Template Designer - WP HTML Mail] Happy Forms SupportHello @haet,
I sent you an email at the beginning of the week but I’m afraid he got into spam. I am sorry to write to you here but I have not found other solutions. I bought your plugin Ninja Forms Excel Export but it seems that I do not have the latest version out of the version I did not run on WordPress 5. It is very urgent that’s why I allow myself to leave you a message here. Thank you to answer me as soon as possible.
Regards,
RoseRequest #14878
Please could I have news ? It’s been 15 days that lasts and it does not move forward!
ThankForum: Plugins
In reply to: [WP Catalogue] Product description in categoryBon un développeur m’a aidé, aussi je poste la solution quand même, cela servira sans doute à quelqu’un… (mais je poste en fran?ais na !!)
Dans le fichier wpc-catalogue.php, environ ligne 170 :<div id="wpc-products">'; while($products->have_posts()): $products->the_post(); $title = get_the_title(); $permalink = get_permalink();
ajouter ;
$product_desc = get_the_content();
puis ensuite vers la ligne 329 trouvez le code
echo '<h2 class="wpc-title">' . $title . '</h2>';
et ajouterecho '<p class="descript"> '. $product_desc .' </p>';
et si vous souhaitez couper le texte pour ne pas l’avoir en entier je vous propose d’ajouter avant le dernier code `$content_max_length = 90;
if ($content_max_length < strlen($product_desc)) {
$product_desc = substr($product_desc, 0, $content_max_length) . ‘…’;
}` le 90 étant le nombre de caractère.Voilà en espérant que ?a aide !
Forum: Plugins
In reply to: [WP Catalogue] Product description in categoryNo one to help me ? ??
Forum: Plugins
In reply to: [WP Catalogue] Product description in categoryHello,
I’m still looking. I tried to put as code below
while($products->have_posts()): $products->the_post();
:
$product_desc = get_post_meta(get_the_id(),'product_desc', true);
then to display the description:
echo '<p class = "descript">'. $ product_desc. '</ p> ';
but nothing appears ??