Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #872027

    /wp-admin/admin.php?page=avia

    some js error ?

    #872037

    this is the page where enfold options are shown. Have you more input of the js errors ?
    have you managed some entries in your functions.php of child-theme ?

    #872042

    No nothing entries in function.php

    add_theme_support(‘deactivate_layerslider’);

    # Remove WordPress’ canonical links
    remove_action(‘wp_head’, ‘rel_canonical’);

    add_filter( ‘avf_google_heading_font’, ‘avia_add_heading_font’);
    function avia_add_heading_font($fonts)
    {
    $fonts[‘Roboto’] = ‘Roboto:100,300,400,500,700,900’;
    $fonts[‘Roboto Slab’] = ‘Roboto Slab:100,300,400,700’;
    $fonts[‘Roboto Condensed’] = ‘Roboto Condensed:300,400,700’;
    $fonts[‘Roboto Mono’] = ‘Roboto Mono:100,300,400,500,700’;
    $fonts[‘Ubuntu’] = ‘Ubuntu:400,700’;
    $fonts[‘Titillium Web’] = ‘Titillium Web:400,700’;
    $fonts[‘Crimson+Text’] = ‘Crimson Text:400,400i,600,600i,700,700i’;
    return $fonts;
    }

    add_filter( ‘avf_google_content_font’, ‘avia_add_content_font’);
    function avia_add_content_font($fonts)
    {

    $fonts[‘Roboto’] = ‘Roboto:100,300,400,500,700,900’;
    $fonts[‘Roboto Slab’] = ‘Roboto Slab:100,300,400,700’;
    $fonts[‘Roboto Condensed’] = ‘Roboto Condensed:300,400,700’;
    $fonts[‘Roboto Mono’] = ‘Roboto Mono:100,300,400,500,700’;
    $fonts[‘Crimson+Text’] = ‘Crimson Text:400,400i,600,600i,700,700i’;
    return $fonts;
    }

    add_filter(‘avf_logo_headline’,’avia_new_logo_span’);
    function avia_new_logo_span(){
    if(is_page(12)){
    $output = “h1”;
    }
    else{
    $output = “strong”;
    }
    return $output;
    }

    //set builder mode to debug
    add_action(‘avia_builder_mode’, “builder_set_debug”);
    function builder_set_debug()
    {
    return “debug”;
    }

    #872374

    Hi,

    You should probably remove this part:

    # Remove WordPress’ canonical links

    If it’s supposed to be a comment then please try changes it to this:

    // Remove WordPress’ canonical links

    Best regards,
    Rikard

    #872538

    yes – i read over it too. – but i guess thats it

    #872970

    No always same issue !

    #873852

    Hi,

    Can you let me know, where do you notice that error?
    Where it pops up?

    Best regards,
    Basilis

    #873853
    #874957

    Hi,

    The site is trying to get the theme resources from invalid urls.

    Example:

    https://www.mybirmans.itjs/avia_advanced_form_elements.js?ver=4.6
    https: (Email address hidden if logged out) net::ERR_NAME_NOT_RESOLVED

    The correct url should be.

    https://www.mybirmans.it/wp-content/themes/enfold/js/avia_advanced_form_elements.js?ver=4.6

    Did you add something on the .htaccess file?

    Best regards,
    Ismael

    #878999

    Yes It was my error in htaccess

    redirect 301 /wp-content/themes/enfold/framework/ https://www.mybirmans.it

    #879126

    Hi,

    Thanks for the feedback, so I’m guessing you solved the problem then?

    Best regards,
    Rikard

    #879128

    Yes!

    #879480

    Hi,

    Alright. We’ll close the thread now.

    Best regards,
    Ismael

Viewing 13 posts - 1 through 13 (of 13 total)
  • The topic ‘Avia child setup with JS error ?’ is closed to new replies.