Viewing 20 posts - 1 through 20 (of 20 total)
  • Author
    Posts
  • #1276488

    Bonjour,
    Dans ma boutique sous ENFOLD, je souhaiterais ajouter un cours texte (idéalement en haut) sur chaque page de ma boutique (le texte sera différent pour chaque catégorie), comment dois-je procéder s’il vous plait ? Dois je ajouter un plugin, si oui lequel ?
    Merci par avance pour votre aide,
    Julien

    #1276844

    Hi Julien,

    Can you give us a link to one of your category pages? you can post the link in private content so it can’t be seen by the public.
    The default category page should have a Category Name on top just like: https://kriesi.at/themes/enfold-2017/product-category/graphics/

    Best regards,
    Nikko

    #1276895

    Bonjour,
    Je viens de vous communiquer en privé un exemple de page boutique sur laquelle je souhaiterais ajouter un texte d’introduction (idéalement entre le titre de la catégorie et la grille des produits).
    J’ai besoin de saisir un texte différent pour chaque page, qui sera adapté à la catégorie affichée.
    Merci de m’indiquer la marche à suivre.
    Cordialement,

    #1277149

    Hi jetsaveurs.com,

    Thanks for giving us the link.
    If I’m not mistaken you want to put it below the banner image which has the category description.
    Please do the following steps:
    1. You’ll need to use a child theme (skip this step if you have one), you can download and find instructions in this link: https://kriesi.at/documentation/enfold/child-theme/
    2. Go to functions.php of your child theme and add this code at the bottom:

    function builder_set_debug() {
    	return 'debug';
    }
    
    add_action( 'avia_builder_mode', 'builder_set_debug' );

    3. Create a separate page for the layout you want to put below the banner image, once you have made the layout/design, go to the bottom of the builder, you should see a Textarea where some shortcodes are generated, copy all these codes.
    4. In functions.php again of the child theme, add this code:
    You can try adding this code in your child theme’s functions.php file:

    function enfold_woocommerce_shop_banner() {
    	echo do_shortcode("SHORTCODE");
    }
    
    add_action( 'ava_after_main_container', 'enfold_woocommerce_shop_banner', 12 );

    replace SHORTCODE with the shortcodes you copied in step 3.
    Also you would need to have conditions to make sure that it only shows in specific category, you would need to use conditional tags: https://codex.wordpress.org/Conditional_Tags#A_Category_Page
    Hope this helps.

    Best regards,
    Nikko

    #1282642

    Bonjour,
    Merci pour ces réponses mais cela ne correspond pas à mes attentes, en fait je souhaite pouvoir ajouter environ 5 lignes de textes, différentes pour chaque catégorie, entre la bannière de la catégorie et les filtres de chaque page shop, en fait je souhaite faire un petit texte d’introduction pour présenter chaque catégorie de la boutique, et aider le SEO).
    Merci de m’indiquer comment je peux insérer un champ texte à cet endroit, et comment je peux l’administrer de façon indépendant pour chaque catégorie.
    Merci par avance pour votre aide,
    Bien cordialement,
    Julien

    #1282940

    Hi Justin,

    To insert a text field in the Product Category, you can do the following:
    1. Install and Activate Advanced Custom Fields: https://wordpress.org/plugins/advanced-custom-fields/
    2. Go to Custom Fields > Add New
    3. Add a Title, then click on Add Field button
    4. Set the following fields:
    – Field Label: Introduction
    – Field Name: introduction
    – Field Type: Wysiwyg Editor
    5. Set Location‘s Rules to: Taxonomy – is equal to – Category (product_cat)
    6. Save, then go to Product Category and you should see the Introduction Field.

    To make it show on the category page, add this code instead in functions.php of your child theme:

    function category_intro() {
    	$category_object = get_queried_object();
    	
    	if (is_product_category()) {
    		echo get_field('introduction', $category_object->taxonomy.'_'.$category_object->term_id);
    	}
    }
    
    add_action('woocommerce_before_main_content', 'category_intro', 12);

    Best regards,
    Nikko

    #1300502

    Bonjour Nikko,
    Merci pour ces indications mais je ne parviens pas au résultat souhaité.
    Le plugin semble parfaitement adapté mais visiblement nous ne nous sommes pas bien compris concernant mes besoins.
    Je ne souhaite pas ajouter un texte d’introduction pour chaque produit (sur la fiche du produit), je souhaite ajouter
    une introduction pour chaque catégorie de produit, elle doit donc être différente pour chaque catégorie mais pas
    pour chaque produit.
    Pour mieux comprendre, je vous invite à consulter mon site (version développement) sur le lien saisi en privé.
    Je souhaite que lorsque le clients clique sur “plateaux-repas” dans le menu, alors une introduction (dont l’objectif est
    d’améliorer le SEO) apparait en dessous entre le titre (bannière) et la grille des produits de cette catégorie, même chose
    principe “buffets-cocktails” avec une introduction différente, “boissons”, “snacking”…
    Merci par avance pour votre aide,
    Bien cordialement,
    Julien

    #1300952

    Hi Julien,

    I tried to check the link but it returns:

    This site can’t be reached

    Also, the code I gave uses this conditional tag is_product_category() which only returns true when viewing a product category archive (I have also tested it).
    You can see Woocommerce Documentation for further details: https://docs.woocommerce.com/document/conditional-tags/

    Best regards,
    Nikko

    #1302087

    Bonjour Nikko,

    Désolé, j’ai remis le lien correct en privé.

    Merci de m’aider car je suis incapable de parvenir à utiliser ce plugin qui semble correspondre à mes besoins mais je n’arrive pas à mettre le bloc de texte au dessus de chaque grille de produit, avec un texte différent pour chaque catégorie.

    Bien cordialement,

    #1302140

    Hi jetsaveurs,

    Can you give us admin access on the development version of your site? so we can try to implement the codes above and try to debug if it’s not working as it’s supposed to.
    Just post the credentials in private content.

    Best regards,
    Nikko

    #1304844

    Bonjour,
    Nous venons de désactiver Google Authenticator sur notre site de développement afin que vous puissiez vous connecter avec le login mot de passe fourni en privé.
    Merci de nous faire un exemple de texte d’introduction (entre la bannière et la grille des produits), en nous précisant les étapes à suivre afin de pouvoir faire nous même le travail sur les autres pages.
    Encore merci pour votre aide,
    Cordialement,
    Julien

    #1305000

    Hi Julien,

    Thanks, but the Code Google Authenticator is still there (screenshot in private content).
    I tried to enter the credentials and just skip the authenticator but it failed.

    Best regards,
    Nikko

    #1305024

    Bonjour,

    Désolé, je viens de désactiver, j’ai vérifier vous pouvez maintenant vous connecter.

    Bonne journée,

    #1305098

    Hi jetsaveurs,

    Thanks, however my IP address is blocked (see screenshot).
    I have put my IP however it’s dynamic, maybe unblocking access from other countries on the staging site would be better so other moderators could also check on it.

    Best regards,
    Nikko

    #1306449

    Bonjour Nikko,

    Voilà, nous avons désactiver temporairement toutes les sécurités afin de vous permettre d’intervenir.

    Merci par avance pour votre aide,

    Bien cordialement,

    Julien

    #1306459

    Hi Julien,

    Thanks, I tried it again but I’m getting this

    Erreur: Identifiant invalide.

    Best regards,
    Nikko

    #1306557

    Bonjour,

    Maintenant cela fonctionne je viens de me connecter, vous pouvez intervenir,

    Bien cordialement,

    #1306647

    Hi Julien,

    Thanks for giving us admin access.
    It seems the misunderstanding was in Step 5 (Location Rules) because of the language, on my end Taxonomy is under Forms and the taxonomy under Post is Post Taxonomy, it seems in French it has the same label, Taxonomie both under Publication and Formulaires (the correct one is under Formulaires which I have already changed).
    I have added some intro text on these two categories (link in private content)

    Best regards,
    Nikko

    #1306886

    Bonjour Nikko,
    C’est parfait, c’est exactement ce que je voulais !
    En revanche, je suis pas certain d’être capable de procéder à cette mise en place sur le site en activité sans commettre d’erreur, est-il possible de mettre résumé les étapes à suivre en incluant votre intervention afin que je ne vous dérange pas à nouveau ?

    #1306932

    Hi Julien,

    You just need to go to ACF > Groupes de champs, edit introduction and change the location’s rules (1st dropdown field) from Taxonomie under Publication to Taxonomie under Formulaires and the third dropdown field change to Categorie (product_cat).

    Best regards,
    Nikko

Viewing 20 posts - 1 through 20 (of 20 total)
  • You must be logged in to reply to this topic.