onlinecnctns
Forum Replies Created
-
Forum: Plugins
In reply to: [Front End PM] How to change text on ‘Directory’ buttonThat worked, thank you!
Forum: Plugins
In reply to: [Front End PM] How to change text on ‘Directory’ buttonIt is the functions.php file.
Here is the code I’ve been using and the other buttons were renamed and removed ok, this is the only one that is not working.
add_filter(‘fep_menu_buttons’, function( $menu ){
$menu[‘newmessage’][‘title’] = sprintf(__(‘Send a New Lead’, ‘front-end-pm’), fep_get_new_message_button() );
return $menu;
});add_filter(‘fep_menu_buttons’, function( $menu ){
$menu[‘message_box’][‘title’] = sprintf(__(‘Lead Archive’, ‘front-end-pm’), fep_get_new_message_button() );
return $menu;
});add_filter(‘fep_menu_buttons’, function( $menu ){
$menu[‘directory’][‘title’] = sprintf(__( ‘Member Directory’, ‘front-end-pm’ ), fep_get_new_message_button() );
return $menu;
});add_filter( ‘fep_menu_buttons’, ‘fep_cus_fep_menu_buttons’, 99 );
function fep_cus_fep_menu_buttons( $menu )
{
unset( $menu[‘announcements’] );
unset( $menu[‘settings’] );
return $menu;
}Forum: Plugins
In reply to: [Front End PM] How to change the text on Menu buttonsCan you show me an example?
Forum: Plugins
In reply to: [Elementor Header & Footer Builder] Need header footer tags/code@nikschavan I removed the custom CSS and set the content width in Elementor and now the site stretches as wide as the screen instead of a max-width of 1500px.
Forum: Plugins
In reply to: [Elementor Header & Footer Builder] Need header footer tags/codeHi @nikschavan, yes I want the entire site to be 1500 px wide max. However, when looking at the site on a larger screen, the body is centered and the header and footer stay left. The header and footer do not adjust to match the rest of the site. Id show you a screenshot if I could attach images.
Forum: Plugins
In reply to: [Elementor Header & Footer Builder] Need header footer tags/code@nikschavan Any help would be appreciated!!!
- This reply was modified 6 years, 1 month ago by onlinecnctns.