Created
October 5, 2020 13:32
-
-
Save yousufansa/ae0cc7f149a7415b791edc99c8f9aa6a to your computer and use it in GitHub Desktop.
Front App - Change Apps Description Page App Info Title & Icon
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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