Change the name of the ‘Announcement’ button


Home Forums Front End PM PRO Change the name of the ‘Announcement’ button

This topic is: Not Resolved
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #44339
    patrick.nelson
    Participant

    Hi
    How can I change the ‘Announcement’ button name to ‘Announcements’?

    Thanks
    Patrick

    #44346
    Shamim Hasan
    Keymaster

    add following code in your theme’s (child theme’s if you are using) functions.php

    add_filter('fep_menu_buttons', function( $menu ){
    	$menu['announcements']['title'] = sprintf(__('Announcements%s', 'front-end-pm'), fep_get_new_announcement_button() );
    	return $menu;
    }, 99);
    
Viewing 2 posts - 1 through 2 (of 2 total)

You need to purchase ‘Front End PM PRO’ to create topic in this support forum.

If you already purchased ‘Front End PM PRO’ please LOGIN.