Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #26776

    Hello,

    I need suport with two issues:

    1. I want to translate the word “All” from the Ajax Portfolio: You can see a screenshot on this page: http://paisagismoonline-com-br.web22.redehost.com.br/nsite1/help/

    2. I also want to remove the Html tags that you can use and the site name on the replies from the blog. There is a screenshot also on the folowing page. http://paisagismoonline-com-br.web22.redehost.com.br/nsite1/help/

    3. Is there a way to only find the threads I´ve posted, I believe I missed this information, because I have to go to many one´s to find my support answers.

    Thank you

    Fabiana

    #131565

    Hi,

    The code below needs to be placed at the very end of functions.php to remove that code from the bottom of the posts

    function mytheme_init() {
    add_filter('comment_form_defaults','mytheme_comments_form_defaults');
    }
    add_action('after_setup_theme','mytheme_init');

    function mytheme_comments_form_defaults($default) {
    unset($default['comment_notes_after']);
    return $default;
    }

    Please open up config-templatebuilder/avia-shortcodes/portfolio.php line 380 which looks like

    $first_item_name = apply_filters('avf_portfolio_sort_first_label', __('All','avia_framework' ), $params);

    The All used in portfolio is right there in my code and it should be translating . Please update to the latest version of the theme which is 2-3 versions newer than what you are using.

    —-

    To find all your threads just click on the word Member under your name on this thread under your avatar.

    Thanks,

    Nick

    #131566

    Hi Nick,

    Thanks for your assistance. Issues #1 and #2 resolved.

    I´ve tried to choose my name under Member, but my login name does not show: faterra.

    Best regards,

    Fabiana.

    #131567

    Hey!

    You can use this link https://kriesi.at/support/profile/faterra to find your posts.

    Best regards,

    Peter

    #131568

    Hi Peter,

    Thank you!

    Everything solved!

    Best regards,

    Fabiana.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Translate Ajax Portfolio and Remove Html Text from Replies’ is closed to new replies.