Multi Vendor Marketplace Plugin | WCFM Marketplace › Forums › WCFM – Ultimate › Change default icons
- This topic has 5 replies, 3 voices, and was last updated 4 years, 6 months ago by Sushobhan.
- AuthorPosts
- May 11, 2020 at 9:02 pm #129682ashley.youngukParticipant
Hello,
Is there a way to change the 3 icons in the head? The notification board, the enquiry board and the announcement board?
Thank you
- May 13, 2020 at 11:48 am #130319SushobhanKeymaster
Hi,
Thanks for getting in touch with us!
Please override this templatewc-frontend-manager\views\wcfm-view-header-panels.php
inside your[child-theme-folder]/wcfm/
folder. If there is no wcfm folder inside your child theme just create a new one and copy the file from the plugin path to there.
After that, you can make your changes to this copied file without affecting the plugin core files.
Thank You! - May 13, 2020 at 4:56 pm #130410ashley.youngukParticipant
That’s great thanks it worked, however the icons dont change if I use the shortcode [wcfm_notifications] – how do I change the icons within that shortcode?
- May 14, 2020 at 9:34 pm #131016DeanParticipant
I can’t seem to get template overrides working for Vendor Dashboard for creating a product.
I want to add alot more details and instruction as to how they should complete the Add Product form. - May 15, 2020 at 11:32 am #131256SushobhanKeymaster
Hi @ashley.younguk,
The shortcodewcfm_notifications
doesn’t allow changing the icon. It’s hardcoded. I created another shortcode for your purpose, change the icon, and use it as per your requirement.add_shortcode( 'wcfm_notifications_with_custom_icons', function( $attr ) { global $WCFM, $wp, $WCFM_Query; $WCFM->nocache(); if ( ! $WCFM || ! $WCFM->frontend || is_admin() || ! wcfm_is_allow_wcfm() ) return; $message = true; if ( isset( $attr['message'] ) && ! empty( $attr['message'] ) && ( 'false' == $attr['message'] ) ) { $message = false; } $enquiry = true; if ( isset( $attr['enquiry'] ) && ! empty( $attr['enquiry'] ) && ( 'false' == $attr['enquiry'] ) ) { $enquiry = false; } $notice = true; if ( isset( $attr['notice'] ) && ! empty( $attr['notice'] ) && ( 'false' == $attr['notice'] ) ) { $notice = false; } $unread_notice = $WCFM->wcfm_notification->wcfm_direct_message_count( 'notice' ); $unread_message = $WCFM->wcfm_notification->wcfm_direct_message_count( 'message' ); $unread_enquiry = $WCFM->wcfm_notification->wcfm_direct_message_count( 'enquiry' ); ?> <div class="wcfm_sc_notifications"> <?php if ( $message && apply_filters( 'wcfm_is_pref_direct_message', true ) && apply_filters( 'wcfm_is_allow_notifications', true ) && apply_filters( 'wcfm_is_allow_sc_notifications', true ) ) { ?> <a href="<?php echo get_wcfm_messages_url(); ?>" class="wcfmfa fa-bell text_tip" data-tip="<?php _e( 'Notification Board', 'wc-frontend-manager' ); ?>"><span class="unread_notification_count message_count"><?php echo $unread_message; ?></span></a> <?php } ?> <?php if ( $enquiry && apply_filters( 'wcfm_is_pref_enquiry', true ) && apply_filters( 'wcfm_is_allow_enquiry', true ) && apply_filters( 'wcfm_is_allow_sc_enquiry_notifications', true ) ) { ?> <a href="<?php echo get_wcfm_enquiry_url(); ?>" class="wcfmfa fa-question-circle text_tip" data-tip="<?php _e( 'Enquiry Board', 'wc-frontend-manager' ); ?>"><span class="unread_notification_count enquiry_count"><?php echo $unread_enquiry; ?></span></a> <?php } ?> <?php if ( $notice && apply_filters( 'wcfm_is_pref_notice', true ) && apply_filters( 'wcfm_is_allow_notice', true ) && apply_filters( 'wcfm_is_allow_sc_notice_notifications', true ) ) { ?> <a href="<?php echo get_wcfm_notices_url(); ?>" class="wcfmfa fa-bullhorn text_tip" data-tip="<?php _e( 'Notice Board', 'wc-frontend-manager' ); ?>"><?php if ( wcfm_is_vendor() ) { ?><span class="unread_notification_count notice_count"><?php echo $unread_notice; ?></span><?php } ?></a> <?php } ?> </div> <?php } );
Usage: [wcfm_notifications_with_custom_icons]
Add this code to your child theme’s functions.php
In case you do not have a child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/
Let me know how this goes.
Thanks! - May 15, 2020 at 11:46 am #131259
- AuthorPosts
- You must be logged in to reply to this topic.