• Resolved sebing83

    (@sebing83)


    Hi! How remove the text “Powered by WP User Frontend” in the welcome account email?
    in wp user frontend plugin there is a file called footer.php and in this file i can see clearly the message displayed in the welcome account email. Take a look at the end of the file…u can see “powered by wp user frontend ecc”. i don’t know what part of the code i have to remove.

    <?php
    /**
    * Email Footer
    */
    if ( ! defined( 'ABSPATH' ) ) {
    exit; // Exit if accessed directly
    }
    ?>
    </div>
    </td>
    </tr>
    </table>
    <!-- End Content -->
    </td>
    </tr>
    </table>
    <!-- End Body -->
    </td>
    </tr>
    </table>
    <!-- Footer -->
    <table border="0" cellpadding="10" cellspacing="0" width="600" id="template_footer">
    <tr>
    <td valign="top">
    <table border="0" cellpadding="10" cellspacing="0" width="100%">
    <tr>
    <td colspan="2" valign="middle" id="credit">
    <?php
    $settings = get_option( 'wpuf_mails' );
    if ( is_array( $settings ) && ( isset( $settings['footer_text'] ) && !empty( $settings['footer_text'] ) ) ) {
    $footer_text = $settings['footer_text'];
    }
    $footer_text = empty( $footer_text ) ? sprintf( '&copy; %s. Powered by <a href="%s">WP User Frontend</a>.', get_bloginfo( 'name', 'display' ), 'https://ww.wp.xz.cn/plugins/wp-user-frontend/' ) : $footer_text;
    $footer_text = wpautop( wp_kses_post( wptexturize( apply_filters( 'wpuf_email_footer_text', $footer_text ) ) ) );
    echo $footer_text;
    do_action( 'wpuf_email_after_footer' );
    ?>
    </td>
    </tr>
    </table>
    </td>
    </tr>
    </table>
    <!-- End Footer -->
    </td>
    </tr>
    </table>
    </div>
    </body>
    </html>
Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello @sebing83

    Thanks for reaching out.

    In order to remove the line “powered by WPUF”, please navigate to WP-admin > WPUF > modules > HTML Email template and enable the module from there. Then navigate through WP-admin > WPUF > Settings > Email > and open the template settings area.

    There you should see a footer text section. Remove the line “powered by WPUF” from there. Then save it. The line will not appear in the footer of the email anymore. Kindly check the screenshot here: https://snipboard.io/uR9XjI.jpg.

    Let me know that’s what you want.

    Regards,

    Hello @sebing83

    You need to modify (comment the line) your code here:
    $footer_text = empty( $footer_text ) ? sprintf( '&copy; %s. Powered by <a href="%s">WP User Frontend</a>.', get_bloginfo( 'name', 'display' ), 'https://ww.wp.xz.cn/plugins/wp-user-frontend/' ) : $footer_text;

    Note: This file is coming from the WPUF Pro plugin’s template, and the reply/solution from @tasfiamohtasim is also a premium feature of WPUF Pro. I’m sorry, according to the rules, we can’t discuss any pro features on the org forum.

    If you have any queries about our pro feature or pre-sales. Please reach us through our website contact page or support[at]wedevs.com

    Thanks.

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

The topic ‘remove Powered by WP User Frontend’ is closed to new replies.