• Following a site update to Avada 6.2 plus the required plugins Fusion Core 4.2 & Fusion Builder v2.2 I get an error with Recent Posts Widget Extended plugin as follows:

    An error of type E_ERROR was caused in line 96 of the file /home/admin/web/thurnbychurch.com/public_html/wp-content/plugins/recent-posts-widget-extended/includes/form.php. Error message: Call to undefined function get_available_post_statuses()

    I get an email from the site telling me there’s a problem too.

    When I log in & go to edit a page I don’t get the page edit wysiwyg but a text only screen headed ‘recent posts’. I have a screenshot that I can attach if helpful.

    • This topic was modified 4 years, 9 months ago by timwarner69.

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Same problem here.

    I am using avada too for two years now. I honestly recommend you guys to not update the theme once its released. just wait couple weeks and check their support forum and see if people are having issues with the update or not. if there is an issue just don’t update unless avada people make a fix for it. this plugin Last updated was 12 months ago. I am not sure if there is going to be an update for it soon.

    check the adava support forum, other people are having issues with 6.2 as well. usually avada will release a patch to fix these kinds of errors.

    https://theme-fusion.com/community-forum/

    • This reply was modified 4 years, 9 months ago by wordpresser.

    Same problem for me.

    Quick hack fix:

    recent-posts-widget-extended/includes/form.php – Line 96 get_available_post_statuses() undefined function <– Liar!! It exists in /wp-admin/includes/post.php but apparently Avada must have some sketchy code in this last update.

    I pulled out the contents of the function since it’s just there to pretty up another core wordpress function. That’s what fashion gets you I guess? ??

    Current:
    <?php foreach ( get_available_post_statuses() as $status_value => $status_label ) { ?>

    Hack:
    <?php foreach ( array_keys( get_object_vars( wp_count_posts( ‘post’ ))) as $status_value => $status_label ) { ?>

    Good Luck Folks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Error after Avada 6.2 update with Fusion Core & Fusion Builder’ is closed to new replies.