Home › Forums › WoodMart support forum › Menu item hide and show › Reply To: Menu item hide and show
June 24, 2020 at 7:37 am
#205959

Aizaz Imtiaz Awan
Keymaster
Hello,
I saw the screenshots you attached.
Please follow the following steps.
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.