• Hello,
    How can I customize the Wishlist page with CSS? your customization is so limited and the wishlist page looks really bad. But no matter what I do I can’t edit or style the wishlist page with CSS since it is based on Tables each cell have to be styled individually, which means I have to style 200 cells in order for someone who has 200 products in their wishlist to have a nice look, but still with the individual cell styling I can’t seem to style them correctly.

    All I want is to achieve the same look as you guys have in your demos, otherwise, the free version with so much design limitation sucks.
    So please help me out with designing the Wishlist Page.
    Can I just copy and paste a template that you guys have or something?

    For now, I am using the Free version and if I feel like it looks professional and great I will later purchase the premium version. But right now I can’t

    So please help me out,

    Thank you,

Viewing 1 replies (of 1 total)
  • Plugin Support Juan Coronel

    (@juaancmendez)

    Hi there,
    we hope you’re doing well!

    The design you see on our page is using the Proteo theme, so if you use another theme, it will likely look different. On the other hand, sometimes for some reason, some themes prevent our plugin styles from loading, but we don’t know if it happens to you since we don’t have access to your page. Could you provide us with a link? Remember to have the wishlist active for all users.

    Try adding this code in the functions.php file of your active theme folder to see if the styles improve:

    if ( defined( 'YITH_WCWL' )) {
    	if( ! function_exists( 'yith_wcwl_enqueue_back_required_assets' ) ) {
    		function yith_wcwl_enqueue_back_required_assets() {
    			$suffix  = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
    			$version = defined( 'WC_VERSION' ) ? WC_VERSION : '';
    
    			wp_enqueue_style( 'woocommerce_prettyPhoto_css', plugins_url( 'assets/css/prettyPhoto.css', WC_PLUGIN_FILE ), array(), $version );
    			wp_enqueue_script( 'prettyPhoto', plugins_url( 'assets/js/prettyPhoto/jquery.prettyPhoto' . $suffix . '.js', WC_PLUGIN_FILE ), array( 'jquery' ), '3.1.6' );
    			wp_enqueue_script( 'prettyPhoto-init', plugins_url( 'assets/js/prettyPhoto/jquery.prettyPhoto.init' . $suffix . '.js', WC_PLUGIN_FILE ), array( 'jquery' ), $version );
    
    			wp_enqueue_style( 'yith-wcwl-main', YITH_WCWL_URL . 'assets/css/style.css', array( 'jquery-selectBox' ) );
    		}
        	add_action( 'wp_enqueue_scripts', 'yith_wcwl_enqueue_back_required_assets', 100 );
    	}
    
    	if ( ! function_exists( 'ywfav_add_fontawesome' ) ) {
    		function ywfav_add_fontawesome() {
            	wp_enqueue_style( 'fontawsome', 'https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css' );
        	}	
    		add_action( 'wp_enqueue_scripts', 'ywfav_add_fontawesome', 99 );	
    	}
    
    }

    If not, could you send us a picture about the changes you want?

    We will be attentive to any news.

    Best regards.

Viewing 1 replies (of 1 total)
  • The topic ‘Change design of Wishlist Page’ is closed to new replies.