Skip to content

Instantly share code, notes, and snippets.

@yousufansa
Created December 2, 2020 12:30
Show Gist options
  • Select an option

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

Select an option

Save yousufansa/89975d67d5652f5539e2366c3c45c2d2 to your computer and use it in GitHub Desktop.
Front - App Marketplace - Change the APP Listing Description Tab Title
if( ! function_exists( 'front_child_hp_default_listing_tabs_description_title' ) ) {
function front_child_hp_default_listing_tabs_description_title( $title_html ) {
$title_html = '<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-24.svg" alt="' . esc_html__( 'SVG', 'front' ) . '" data-parent="#listing-tabs"></figure>' . esc_html__( 'Description', 'front' ) . '</div>';
return $title_html;
}
}
add_filter( 'front_hp_default_listing_tabs_description_title', 'front_child_hp_default_listing_tabs_description_title' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment