Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #1005245

    Hello .
    How can I translate this into Spanish?
    http://oi67.tinypic.com/8z4uiq.jpg
    https://www.transforma.global/?page_id=914

    Thanks

    #1005363

    Hey transformaglobalweb,

    Are you using WPML?

    Best regards,
    Victoria

    #1005725

    I do not use it, is there a free form? they are two small things

    #1005728

    I don’t understand why it did not translate all the information on the page, I consider that I don’t have to buy a new plugging for traducing just 2 words. I need to your help to find the exact file in WordPress for changing that 2 words ( ALL) (You are here:).
    http://oi67.tinypic.com/8z4uiq.jpg

    #1005933

    Hi,
    You don’t need to buy an extra plugin.

    1) Please add this code to the child theme functions.php:

    
    /* Following code changes "You are here:" in front of breadcrumbs */ 
    add_filter('avia_breadcrumbs_args', 'avia_change_you_are_here_breadcrumb', 10, 1);
    function avia_change_you_are_here_breadcrumb($args){
    $args['before'] = "You are here: ";
    return $args;
    }
    

    and replace “You are here” with your custom/translated text.

    2) Please add this code to the child theme functions.php:

    
    add_filter('avf_portfolio_sort_first_label','new_first_label');
    function new_first_label() {
    $first_item_name = "All";
    return $first_item_name;
    }
    

    and replace “All” with your custom/translated text.

    Best regards,
    Dude

    #1007077

    Hello, you could help me in that it does not let me do it from WordPress:

    `/* Following code changes “Estás aquí:” in front of breadcrumbs */
    add_filter(‘avia_breadcrumbs_args’, ‘avia_change_you_are_here_breadcrumb’, 10, 1);
    function avia_change_you_are_here_breadcrumb($args){
    $args[‘before’] = “Estás aquí: “;
    return $args;
    }

    #1007078

    2)

    `add_filter(‘avf_portfolio_sort_first_label’,’new_first_label’);
    function new_first_label() {
    $first_item_name = “Todos los documentos”;
    return $first_item_name;
    }

    #1007118

    Hi,

    I added the code to the funcztions.php :)

    Best regards,
    Peter

    #1007130

    Thank you very much, I just finished the page for you. Congratulations for your great work.

    #1007283

    Hi,

    Did you need additional help, or shall we close this topic?

    Best regards,
    Jordan Shannon

    #1007916

    Hello, if something else needs to be translated:

    New Search = Nueva búsqueda
    If you are not happy with the results below please do another search =Si no está satisfecho con los resultados a continuación, haga otra búsqueda
    3 search results for: martin. = 3 resultados de búsqueda para: martin

    http://oi67.tinypic.com/2exo6j4.jpg
    Thanks for you help

    #1008731

    Hi,

    Thank you for using Enfold.

    You can edit the search.php to translate the text manually or install/use the following plugin.

    // https://wordpress.org/plugins/loco-translate/

    If you chose to modify the theme file, look for these line of codes:

    search.php line 31:

    echo "<h4>".__('New Search','avia_framework')."</h4>";
    

    search.php line 32:

    echo "".__('If you are not happy with the results below please do another search','avia_framework')."";
    

    Best regards,
    Ismael

Viewing 12 posts - 1 through 12 (of 12 total)
  • You must be logged in to reply to this topic.