Please submit a private ticket if you need to share sensitive information, such as license details and admin credentials.

Okay
  Public Ticket #3146722
Smart notification question
Closed

Comments

  • Blake Lemmons started the conversation

    Hi. The plugin works fine. I've been editing the design with extra CSS. For privacy reasons for customers, how can I hide the customer's last name from showing? Maybe I would just show the first letter, but worst case I want to hide the whole last name. I was looking in the plugin files but could not find where that would be.

  •  767
    Janilyn replied

    Hi Blake,

    Thanks for contacting WPClever Support Forum. We're not available at the weekends so today (Monday) I am able to process your ticket.

    We’ve received your ticket and assigned one of our developers to help you with that. 

    He’ll be looking into your question and responding with specific instructions as soon as possible. 

    While waiting for our developer, you can kindly provide us with a link to your published site so that our developer can review the custom CSS you've added as well if that affects the display of notifications.

    Please stay patient as we're having very heavy workloads, it might take some time for our developers to reach back.

    Best regards.

    Janilyn T. - WPClever Support Agent

  •  153
    Henry replied

    Hi,

    Please add the below custom code (How to add custom code?)

    // Wpclever team support ticket-3146722
    add_filter( 'WPCSN/new_orders/item_title', function($title, $_name, $_address, $order){
        return '';
    }, 99, 4 );
    add_filter( 'WPCSN/virtual_orders/item_content', function($content){
        return $content . __(' has been purchased.', 'wpcsn');
    }, 99);

    Best regards,
    Henry N.