Home Forums WoodMart support forum WP Bakery Instagram Widget Error

WP Bakery Instagram Widget Error

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #142313

    [email protected]
    Participant

    Hello,

    I noticed my Instagram widget stopped working at the bottom of my home page a couple weeks ago. How to fix it? It was fine before.

    Thank you

    #142314

    [email protected]
    Participant

    Error says: Instagram has returned invalid data.

    #142355

    Hello,

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

    add_filter( 'woodmart_intagram_user_ajax_load', '__return_true' );

    Next, find the line:

    if ( is_wp_error( $media_array ) && $media_array->get_error_code() === 'invalid_response_429' ) {

    in

    woodmart/inc/shortcodes/instagram.php

    and replace with this line:

    if ( is_wp_error( $media_array ) && ( $media_array->get_error_code() === 'invalid_response_429' || apply_filters( 'woodmart_intagram_user_ajax_load', false ) ) ) {

    Best Regards

    #142459

    [email protected]
    Participant

    It did not work. Can you please check via FileBird extension?
    credentials in private
    Thank you

    #142486

    Hello,

    Please provide FTP and site admin access into the private area.

    Best Regards

    #142560

    [email protected]
    Participant

    ptivate

    #142608

    Hello,

    Your issue has been fixed. Please check. This issue will be fixed in our nearest update and you will be able to switch to the parent theme.

    Best Regards

    #142635

    [email protected]
    Participant

    Thanks!
    One question: What is the difference between the child and parent themes?

    #142643

    Hello,

    Their child theme is necessary for customizations which would be saved after each theme update. Here are more details: https://developer.wordpress.org/themes/advanced-topics/child-themes/

    Best Regards

Viewing 9 posts - 1 through 9 (of 9 total)

The topic ‘WP Bakery Instagram Widget Error’ is closed to new replies.