Instagram Authorization
-
Hi,
1 year, 4 months ago I had a problem with IPGB and you fixed it with the code below:
<?php
/**************************************
CHILD THEME ENQUEUE STYLES
***************************************/add_action( ‘wp_enqueue_scripts’, ‘child_theme_enqueue_styles’ );
if (!function_exists(“child_theme_enqueue_styles”)) { function child_theme_enqueue_styles() {
wp_enqueue_style( ‘canon-parent-style’, get_template_directory_uri() . ‘/style.css’, array(‘canon-normalize’) );
}
}/**************************************
IP Geo Block Snippet
***************************************/
if (class_exists(‘IP_Geo_Block’)) {function my_bypass_admins( $queries ) {
$whitelist = array(
‘handle_canon_options_advanced’,
);
return array_merge( $queries, $whitelist );
}
add_filter( ‘ip-geo-block-bypass-admins’, ‘my_bypass_admins’ );
}However, since the new update the instagram carousel does not appear on my page anymore ? Just an error… I’ve had to deactivate IPGB so it works again…
Any ideas ?
Thanks
Ian
- The topic ‘Instagram Authorization’ is closed to new replies.