Removing emailaddres from Review overview

We're shifting our Forum based support to a more dedicated support system!

We'll be closing our Forum support from 10th June, 2020 and move to Email Support assistance.

  • If you are a WCFM premium add-ons user, contact us- here
  • Want to know more before buying our add-ons? Send Pre sale queries- here
  • If you are a WCFM free user, please open a support ticket at WordPress.org
  • For WCFM App related queries, reach us- here
From now the forum will be read-only!

Multi Vendor Marketplace Plugin | WCFM Marketplace Forums WCFM – Ultimate Removing emailaddres from Review overview

Viewing 16 reply threads
  • Author
    Posts
    • #113948
      Arvin Singh
      Participant

      a

    • #113951
      Arvin Singh
      Participant

      b

    • #114076
      Molay Das
      Keymaster

      Hi,

      Can you please explain a bit more about your requirement? It’ll be great if you can share a screenshot of the section as well.

      Thanks,

    • #114384
      Arvin Singh
      Participant

      c

      Attachments:
      You must be logged in to view attached files.
    • #114590
      Arvin Singh
      Participant

      Could you open the attachment on the last message? This forum is giving me a hard time.

    • #114727
      Molay Das
      Keymaster

      Hi,

      Can you please see the attachment below and confirm whether you are willing to remove the email address (marked in red) from this section or not?
      PFA….

      Thanks,

      Attachments:
      You must be logged in to view attached files.
    • #114909
      Arvin Singh
      Participant

      Yes, that’s exactly the one we would like to remove from the overview.

    • #115343
      Arvin Singh
      Participant

      Hello, did you receive the last message? How do we proceed on removing that address?

    • #119558
      Arvin Singh
      Participant

      Hi, any chance that my question will be answered anywhere soon? Thanks!

    • #119756
      Molay Das
      Keymaster

      Hi,

      Please go by the following steps:

      1) First create a js file named “custom-script.js” and put it inside the “js” folder (if you don’t have a “js” folder then create it) of your child theme.
      2) Add the below code to your newly created “custom-script.js” file.

      jQuery( document ).ready( function( $ ) {
      	setTimeout(function(){
      		$(".wcfmmp-author-meta").each(function() {
      		  var content = $(this).html();
      		  $(this).html(content.substr(0,content.indexOf('<br>')));
      		});
      	}, 900);
      });

      3) Add the below code to your child theme’s functions.php file.

      add_action( 'wp_enqueue_scripts', 'custo_scripts_enqueue_styles', 99999 );
      function custo_scripts_enqueue_styles() {
      	wp_enqueue_script( 'custom-script', get_stylesheet_directory_uri() . '/js/custom-script.js', array( 'jquery' ), '1.0', true );
      }

      It will remove the customer email from review list.

      Thanks,

    • #119800
      Arvin Singh
      Participant

      Hi,

      thanks. But it doesn’t work. The mailaddress still shows.

    • #119825
      Molay Das
      Keymaster

      Hi,

      Can you please share us your website admin login details?
      Please send it as private reply here.

      Thanks,

    • #119841
      Arvin Singh
      Participant
      This reply has been marked as private.
    • #120091
      Arvin Singh
      Participant

      Did you manage to have a look at the admin login?

    • #121151
      Arvin Singh
      Participant

      Anything? It looks like quite a simple procedure but already waiting 3 weeks to resolve it. Please help us along so we can get going.

    • #121248
      Molay Das
      Keymaster

      Hi,

      Needed to replace the custom-script.js file code with the below given code.

      jQuery( document ).ready( function( $ ) {
      	setTimeout(function(){
      		$(".wcfmmp-author-meta").each(function() {
      		  var content = $(this).html();
      		  $(this).html(content.substr(0,content.indexOf('<br>')));
      		});
      	}, 1500);
      });

      No need to do it for your site as I replaced it already. It’s working now.

      Thanks,

    • #121410
      Arvin Singh
      Participant

      Thanks, awesome!

Viewing 16 reply threads
  • You must be logged in to reply to this topic.