Home Forums WoodMart support forum footer doesn't work Reply To: footer doesn't work

#140034

Hello,

The pre-footer has been disabled on the home page https://prnt.sc/owhzqr check other pages

Your Footer columns are empty https://gyazo.com/9de9488d1d7868373dc5c7f24a1af79a You need to add the widgets.

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