• Resolved themugician

    (@themugician)


    Hi,

    I have 2 questions.

    1.
    I was wondering if it’s possible to make people anonymous in the front-end so their names don’t show up.

    2.
    Also as an Admin would I know when someone sends an email to another user and what they sent through the contact form at the bottom of the advert?

    Thank you,
    Greg

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Greg Winiarski

    (@gwin)

    Hi,
    1. the name user entered in the [adverts_add] form is used only on the Ad details page in the phrase by <strong>XXX</strong>.

    You can replace this phrase with something else using adverts_tpl_single_posted_by filter, for example you can add in your theme functions.php file the code below

    
    add_filter( "adverts_tpl_single_posted_by", function() {
      return "Name Undisclosed";
    } );
    

    2. by default no, but you can install a plugin like Email Log then you will have all the messages sent by WP logged in the wp-admin panel.

    Thread Starter themugician

    (@themugician)

    ok, great to know
    thank you

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Anonymous users’ is closed to new replies.