Multi Vendor Marketplace Plugin | WCFM Marketplace › Forums › WC Vendors › Store logo, store banner, store list banner, Mobile Banner
- This topic has 6 replies, 3 voices, and was last updated 4 years, 6 months ago by wiz.sas.project.
- AuthorPosts
- August 23, 2019 at 7:16 pm #78053aurelien_boutillierParticipant
Hello,
In the vendor dashboard settings and in the store configuration after making first inscription, there is several fields to fill in concerning pictures to uplaod : Store logo, store banner, store list banner, Mobile Banner.
But it’s not clear enough for my vendors. They don’t understand what is it and what they have to do.Do you know if it’s possible to change the wording of these fields or add a text that describes what it is and what it’s used for ?
Thanks.
Aurelien. - August 28, 2019 at 5:12 pm #78799WCFM ForumMember
HI,
Sure, please know me what instruction you want to add for those fields? I will give you code for that!
Thank You
- August 28, 2019 at 10:03 pm #78838aurelien_boutillierParticipant
Hello,
Sure,
A. On the initial store setting page, I would like to display the wording in french + add description text :
1. store logo
Translate the wording by “logo de votre galerie”
Add a text that describes what it is used for : “Il s’agit de l’image qui sera visible par les clients dans chacune de vos annonces (au dessus de vos coordonnées). Cette image sera également visible par les clients lorsqu’ils consultent la liste des antiquaires ou la page dédiée à votre galerie. Elle apparaît sous la forme d’une petite image incorporée à votre bannière. Vous pouvez par exemple y mettre votre photo ou votre logo ou la photo de l’une de vos oeuvres”2. bannière
the wording is OK, no translation needed
Add a text that describes what it is used for : “Il s’agit de la grande image qui sera visible par les clients lorsqu’ils consultent la liste des antiquaires ou la page dédiée à votre galerie. Vous pouvez par exemple y mettre la photo d’une de vos œuvres ou la photo de votre magasin d’antiquités”B. In the store dashboard, I would like to display the wording in french + add description text :
1. store logo
Same as above
2. store banner
Translate the wording by “bannière”
Add the same description as above
3. Mobile banner
I would like to cancel it (not displayed, because not useful)
4. store list banner
Translate the wording by “bannière liste antiquaires”
Add a text that describes what it is used for : “Il s’agit de l’image de votre galerie, visible par les clients lorsqu’ils consultent la liste des antiquaires”Regards,
Aurélien - September 18, 2019 at 9:56 am #82256WCFM ForumMember
Hi,
Add this code to your site –
add_filter( 'wcfm_marketplace_settings_fields_general', function( $settings_fields, $user_id ) { if( isset( $settings_fields['gravatar'] ) ) { $settings_fields['gravatar']['label'] = 'logo de votre galerie'; $settings_fields['gravatar']['hints'] = 'Il s’agit de l’image qui sera visible par les clients dans chacune de vos annonces (au dessus de vos coordonnées). Cette image sera également visible par les clients lorsqu’ils consultent la liste des antiquaires ou la page dédiée à votre galerie. Elle apparaît sous la forme d’une petite image incorporée à votre bannière. Vous pouvez par exemple y mettre votre photo ou votre logo ou la photo de l’une de vos oeuvres'; } if( isset( $settings_fields['banner'] ) ) { $settings_fields['banner']['label'] = 'bannière'; $settings_fields['banner']['hints'] = 'Il s’agit de la grande image qui sera visible par les clients lorsqu’ils consultent la liste des antiquaires ou la page dédiée à votre galerie. Vous pouvez par exemple y mettre la photo d’une de vos œuvres ou la photo de votre magasin d’antiquités'; } if( isset( $settings_fields['list_banner'] ) ) { $settings_fields['list_banner']['label'] = 'bannière liste antiquaires'; $settings_fields['list_banner']['hints'] = 'Il s’agit de l’image de votre galerie, visible par les clients lorsqu’ils consultent la liste des antiquaires”'; } if( isset( $settings_fields['mobile_banner'] ) ) { unset( $settings_fields['mobile_banner'] ); } return $settings_fields; }, 50, 2 );
Add this code to your child theme’s functions.php
In case you do not have child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/Thank You
- September 19, 2019 at 3:29 am #82358aurelien_boutillierParticipant
Thank you very much, it works well !
- May 26, 2020 at 12:53 pm #135316wiz.sas.projectParticipantThis reply has been marked as private.
- September 21, 2019 at 7:34 pm #82809WCFM ForumMember
You are always welcome 🙂
Let me know if there’s anything else we can help you with.
Can we ask for a favor? Would you mind taking a few minutes to review our plugin at https://wordpress.org/support/plugin/wc-multivendor-marketplace/reviews/ and let others know about your 5 Star experience with WCFM Marketplace. Also, follow us on Twitter https://twitter.com/wcfmmp for more exciting news, important updates, and irresistible offers.
- AuthorPosts
- You must be logged in to reply to this topic.