Home Forums WoodMart support forum Does Woodmart support YITH Premium Wishlist?

Does Woodmart support YITH Premium Wishlist?

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #300250

    metuza
    Participant

    Hello,

    I’m just wondering if Woodmart supports YITH Premium Wishlist?

    Brgds
    Rune

    #300278

    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

    #300513

    metuza
    Participant

    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

    #300694

    metuza
    Participant

    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

    #300745

    Hello,

    Thank you very much for sharing the code, it would be useful for other users willing to use this plugin.

    Best Regards

Viewing 5 posts - 1 through 5 (of 5 total)