• Resolved akgt

    (@akgt)


    Since you already offer change order. it would be nice if custom post types, categories and taxonomy could also be changed.

    Mail Features: – I’ve tried to inc codes for you, so it can be a free option if added.

    Simple SMTP
    https://nanopo.st/how-to/wordpress-smtp-without-plugin/

    Change admin email address shared in user emails

    Globally change email sender wordpress

    https://theeventscalendar.com/knowledgebase/changing-sender-name-and-email-wordpress/

    // Change email address
    function change_default_sender_email( $original_email_address ) {
    return ‘[email protected]’;
    }

    // Change sender name
    function change_default_sender_name( $original_email_from ) {
    return ‘My name here’;
    }

    // Hooking up functions to the correct WordPress filters
    add_filter( ‘wp_mail_from’, ‘change_default_sender_email’ );
    add_filter( ‘wp_mail_from_name’, ‘change_default_sender_name’ );

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Bowo

    (@qriouslad)

    >> Since you already offer change order. it would be nice if custom post types, categories and taxonomy could also be changed.

    Change order also works with CPTs. Pro version allows for changing order of taxonomy terms.

    There’s also the “Utilities >> Email Delivery” module for the “SMTP” feature you’re suggesting. It allows for changing sender name and email. This is part of the free version.

    Thread Starter akgt

    (@akgt)

    Thanks. I did not notice it. must have been a later update.

    Plugin Author Bowo

    (@qriouslad)

    @akgt it’s been there since v5.1.0 (June 4, 2023).

Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.