Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi tkoivisto… I don’t know if you found a solution yet but I just had to fix this issue for a clients site and came here to post the fix. We are also using Flatsome + Wp 4.0. Hopefully you have a “Child Theme” in place already and if not you should do so before moving forward… don’t know how? Look it up.. it’s too much to explain here. Whichever the case there is a bust in code for this plugin so we need to fix this first.

    1. Navigate to: wp-content/plugins/yith-woocommerce-wishlist/class.yith-wcwl-ui.php

    2. search for this code:

    ` if( get_option( ‘yith_wcwl_share_email’ ) == ‘yes’ )

    { $html .= ‘<li style=”list-style-type: none; display: inline-block;”><a class=”email” href=”mailto:?subject=I wanted you to see this site&body= ‘ . $url . ‘&title=”‘ . __(’email’, ‘yit’) . ‘” ></a></li>’; }`

    3. Replace with this code:

    if( get_option( 'yith_wcwl_share_email' ) == 'yes' )
    
            { $html .= '<li style="list-style-type: none; display: inline-block;"><a class="icon-envelop" href="mailto:?subject=I wanted you to see this site&body=' . $url . '&title="' . __('email', 'yit') . '" ></a></li>'; }

    4. CSS styling should reside in your Child Theme “style.css” – this is what I added to change the background hover color after making the above change:

    /* Wishlist Email Icon BG Color */
    .icon-envelop:hover {
      background-color: #37D7B7;
      border-color: #37D7B7; }

    You should be good after that.. Nothing changed in your browser? Try clearing your cache and refreshing your page to see your new changes. Oh…. one more note. By default the EMAIL icon was in the center of the 5 social icons on all other pages except this one… if you want to remain consistant, move the EMAIL block of code to the center position in the .php file I named above.

    good luck, “K”

    I have tried your solution but nothing happened. In fact it made my entire word-press site crash and I had to go into the f2p and manually delete the plugin. Please do not try this solution because it does not work and will make you have a mini heart attack when your site goes down.Could someone please post an actual solution towards fixing this problem I really need the email wishlist feature for my website PLZ FIX IT!!!!!!! I love the plugin the email error is the only bad thing I have found so far. If you guys fix it I will totally give 5 stars GREAT PLUGIN!!!! keep up the good work and improvements.

    I assure you that this solution works according to the specs… Flatsome + Wp 4.0 …are you using a different version of WordPress maybe? Also, double check your cut & paste to be sure the code is exactly like listed above and placed specifically where specified.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Email This Wishlist Not Working/Displaying’ is closed to new replies.