Does Woodmart support YITH Premium Wishlist?
-
Hello,
I’m just wondering if Woodmart supports YITH Premium Wishlist?
Brgds
Rune
Hello,
We have not tested this plugin with the recent theme version as WoodMart has its own Wishlist.
If they refund in case of incompatibility, you can try.
If you have any questions please feel free to contact us.
Best Regards
Hello,
It seems like plugin uses prettyPhoto for its popups so it will not work with woodmart theme. Tried to use this code as below but still no luck:
add_action( ‘wp_enqueue_scripts’, ‘woodmart_child_enqueue_scripts’, 20000 );
function woodmart_child_enqueue_scripts() {
wp_enqueue_script( ‘prettyPhoto-init’ );
wp_enqueue_script( ‘prettyPhoto’ );
}
Any idea?
Brgds
Rune
Problem solved. I got the below code from YITH.
// Enable PrettyPhoto for YITH Wishlist
if ( defined( 'YITH_WCWL' ) && ! function_exists( 'yith_wcwl_enqueue_prettyphoto' ) ) {
function yith_wcwl_enqueue_prettyphoto( ) {
wp_enqueue_style( 'woocommerce_prettyPhoto_css', str_replace( array( 'http:', 'https:' ), '', plugins_url( 'assets/css/prettyPhoto.css', WC_PLUGIN_FILE ) ), array(), WC_VERSION );
wp_enqueue_script( 'prettyPhoto' );
wp_enqueue_script( 'prettyPhoto-init' );
}
add_action( 'wp_enqueue_scripts', 'yith_wcwl_enqueue_prettyphoto', 99999 );
}
Brgds
Rune
Hello,
Thank you very much for sharing the code, it would be useful for other users willing to use this plugin.
Best Regards