LS
(@lsterling03)
Agreed! This is happening to me too — please add a fix for this in the next update.
I solve this, changing the file that contains the function to the enqueue scripts in the front-end.
/*
Add javascript and css for front end
*/
function pix_enqueue_script() {
// I PUT THIS CONDITION, IF PAGE IS BLOG (page slug or id), execute the script
if(is_page('blog')) {
$enable_infinite_load=pix_get_option('enable_infinite_load');
if(!empty($enable_infinite_load)){
wp_enqueue_style( 'pix-infiniteload', INFINITE_LOAD_URL . '/css/infiniteload.css' );
wp_enqueue_script( 'pix-infiniteload-lib', INFINITE_LOAD_URL . '/js/jquery.infiniteload.js', array('jquery'),false,true);
wp_enqueue_script( 'pix-infiniteload', INFINITE_LOAD_URL . '/js/infiniteload.js', array('jquery','pix-infiniteload-lib'),false,true);
wp_localize_script( 'pix-infiniteload', 'pix_infiniteload', array('navSelector'=>pix_get_option('navigation_selector'),'contentSelector'=>pix_get_option('content_selector'),'nextSelector'=>pix_get_option('next_selector'),'itemSelector'=>pix_get_option('item_selector'),'paginationType'=>pix_get_option('pagination_type'),'loadingImage'=>pix_get_option('loading_image'),'loadingButtonLabel'=>pix_get_option('button_label'),'loadingButtonClass'=>pix_get_option('button_class'),'loadingFinishedText'=>pix_get_option('finished_msg')) );
}
}
}
add_action( 'wp_enqueue_scripts', 'pix_enqueue_script' );
hi, i solve this problem with this code:
function pix_enqueue_script() {
if(is_home()) {
$enable_infinite_load=pix_get_option('enable_infinite_load');
if(!empty($enable_infinite_load)){
wp_enqueue_style( 'pix-infiniteload', INFINITE_LOAD_URL . '/css/infiniteload.css' );
wp_enqueue_script( 'pix-infiniteload-lib', INFINITE_LOAD_URL . '/js/jquery.infiniteload.js', array('jquery'),false,true);
wp_enqueue_script( 'pix-infiniteload', INFINITE_LOAD_URL . '/js/infiniteload.js', array('jquery','pix-infiniteload-lib'),false,true);
wp_localize_script( 'pix-infiniteload', 'pix_infiniteload', array('navSelector'=>pix_get_option('navigation_selector'),'contentSelector'=>pix_get_option('content_selector'),'nextSelector'=>pix_get_option('next_selector'),'itemSelector'=>pix_get_option('item_selector'),'paginationType'=>pix_get_option('pagination_type'),'loadingImage'=>pix_get_option('loading_image'),'loadingButtonLabel'=>pix_get_option('button_label'),'loadingButtonClass'=>pix_get_option('button_class'),'loadingFinishedText'=>pix_get_option('finished_msg')) );
}
}
}
add_action( 'wp_enqueue_scripts', 'pix_enqueue_script' );
I add the condition in this function. I’m not use this code ‘is_page(‘blog’)’. but this ‘is_home()’. I use this codex page for resolve the problem.
http://codex.ww.wp.xz.cn/Conditional_Tags
If u need to add more page in your condition, this is the code:
if(is_home() || is_front_page() || is_sigle() || ETC.... ) {}