Tagged: 

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #295088

    Hi I’m having problem with the accordion slider in this homepage: http://blog.maxitracce.it. Msg errors are:

    Notice: Undefined property: stdClass::$ID in /home/maxitrac/blog/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_accordion.php on line 564

    Notice: Undefined property: stdClass::$ID in /home/maxitrac/blog/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_accordion.php on line 573

    Notice: Undefined property: stdClass::$ID in /home/maxitrac/blog/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_accordion.php on line 574

    can you help me (urgent, because the web site is live…). I provide full admin access….

    #295157

    Hey!

    Try adding this line to the theme functions.php or wp-config.php file:

    error_reporting(E_ALL ^ E_NOTICE);
    

    Cheers!
    Josue

    #295319

    I added this line to these files:
    /wp-content/themes/enfold/functions-enfold.php
    /wp-content/themes/enfold/functions.php
    /wp-config.php

    See screenshots
    functions-enfold
    functions
    wp-config

    Note that I’m using a child theme of Enfold (folder is called “enfold-child”)

    nothing changed :(

    #295624

    Hi!

    Ask your hosting support to turn off the display_errors setting in the php.ini file.

    Best regards,
    Josue

    #295865
    This reply has been marked as private.
    #295876
    This reply has been marked as private.
    #295882
    This reply has been marked as private.
    #296663

    Hi Josue, any idea? Any good news?

    #299271

    Hi!

    To fix the warning open up wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_accordion.php and replace:

    
    $this->slides[$key]->av_target		= empty($slide['attr']['link_target']) ? "" : "target='".$slide['attr']['link_target']."'" ;
    

    with

    
    $this->slides[$key]->av_target		= empty($slide['attr']['link_target']) ? "" : "target='".$slide['attr']['link_target']."'" ;
    $this->slides[$key]->ID             = $slide['attr']['id'];
    

    We’ll also fix it with the next update.

    Cheers!
    Peter

    #299585

    thank you Dude. It works now :)
    I’m not entering in a world of pain (walter sobchak)… :D

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Accordion Slider msg error’ is closed to new replies.