Change the Safe Button Icon in Movedo

The Safe Button functionality in combination with the usage of the Area Items can offer to your visitors rapidly accessible condensed fundamental information. In order to provide even more flexibility, there is the possibility to replace the predefined Safe Button Icon via your child theme. The steps are quite simple:

  • Enable and activate your Child theme.
  • In the functions.php of your Child theme add the following filter:
function grve_child_safe_btn_icon() {
 return '<i class="fa fa-bars"></i>';
}
add_filter( 'movedo_grve_safe_btn_icon', 'grve_child_safe_btn_icon' );
  • Save Changes to replace your Safe Button Icon.

Of course, you can use any icon you need by replacing the fa fa-bars (http://fontawesome.io/icons/)