I can not translate español

  • Member
    francomarano708
    January 23, 2019 at 1:16 am #7544

    I CAN NOT MAKE THE FOLLOWING TRANSLATIONS IN
    TABS:
    -DESCRIPTION
    -ITINERARY
    -REVIEW
    indicacion

    Try with:
    Funtions.php

    /**
     * Rename product data tabs
     */
    add_filter( 'woocommerce_product_tabs', 'woo_rename_tabs', 98 );
    function woo_rename_tabs( $tabs ) {
    
    	$tabs['description']['title'] = __( 'More Information' );		// Rename the description tab
    	$tabs['reviews']['title'] = __( 'Ratings' );				// Rename the reviews tab
    	$tabs['itinerary_tab']['title'] = __( 'Product Data' );	// Rename the additional information tab
    
    	return $tabs;
    
    }

    And plugin Loco Translate

    TOURS:
    PRICE AND THE MESSAGE OF THE FORM
    Fill up the form below to tell us what you’re looking for
    indicacion

    Sorry, this forum is for verified users only. Please Login or Register to continue

Comments are closed.