Skip to content

Instantly share code, notes, and snippets.

@yousufansa
Created December 2, 2020 12:31
Show Gist options
  • Save yousufansa/b07f922b1372ee4ca15ea82b9c3253a7 to your computer and use it in GitHub Desktop.
Save yousufansa/b07f922b1372ee4ca15ea82b9c3253a7 to your computer and use it in GitHub Desktop.
Front - App Marketplace - Change the APP Listing Reviews Tab Title
if( ! function_exists( 'front_child_hp_default_listing_tabs_reviews_title' ) ) {
function front_child_hp_default_listing_tabs_reviews_title( $reviews_title ) {
$reviews_title = '<div class="d-md-flex justify-content-md-center align-items-md-center"><figure class="ie-height-40 d-none d-md-block w-100 max-width-5 mr-3"><img class="js-svg-injector" src="' . get_template_directory_uri() . '/assets/svg/icons/icon-7.svg" alt="' . esc_html__( 'SVG', 'front' ) . '" data-parent="#listing-tabs"></figure>' . esc_html__( 'Reviews', 'front' ) . '</div>';
return $reviews_title;
}
}
add_filter( 'front_hp_default_listing_tabs_reviews_title', 'front_child_hp_default_listing_tabs_reviews_title' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment