Skip to content

Instantly share code, notes, and snippets.

@yousufansa
Created October 5, 2020 13:32
Show Gist options
  • Select an option

  • Save yousufansa/ae0cc7f149a7415b791edc99c8f9aa6a to your computer and use it in GitHub Desktop.

Select an option

Save yousufansa/ae0cc7f149a7415b791edc99c8f9aa6a to your computer and use it in GitHub Desktop.
Front App - Change Apps Description Page App Info Title & Icon
if ( ! function_exists( 'front_app_hp_listing_custom_description_tab_title' ) ) {
function front_app_hp_listing_custom_description_tab_title( $title ) {
$title = '<div class="d-md-flex justify-content-md-center align-items-md-center"><span class="d-none d-md-block w-100 line-height-1 max-width-5 mr-3"><i class="font-size-3 fab fa-app-store"></i></span>' . esc_html__( 'App Description', 'front' ) . '</div>';
return $title;
}
}
add_filter( 'front_hp_listing_description_tab_title', 'front_app_hp_listing_custom_description_tab_title' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment