Home Forums WoodMart support forum Header Builder Issues and Instagram Issues Reply To: Header Builder Issues and Instagram Issues

#141880

Hello,

As for the Header Builder: Our AJAX query is interrupted by a capture validation. We cannot detect what launch this validation: plugin or your host configuration. Try to contact your host support for checking. http://prntscr.com/p17l50

As for Instagram: 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