• Resolved Tarjeet Singh

    (@tarjeet98)


    I have 3 requirements

    1) Display product thumbnail in “show successful notice in popup”
    I can see something in plugin settings like “{product_name} added to Wishlist” is there a way to do something like this “{product_image} added to Wishlist”

    2) How can I display “Show successful notice in popup” for a longer time so that I can do styling.. coz the popup/the popup div get removed and I cant do any styles in such a few seconds.

    3) Is there anyway to slide the popup from left start to left end(success popup div end) if you know what I mean…

    Kindly reply ASAP, thanks!

    • This topic was modified 2 years, 3 months ago by Tarjeet Singh.
Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author templateinvaders

    (@templateinvaders)

    Hi @tarjeet98

    1. You can add {product_image} placeholder with the next snippet and use it in plugin options:
    https://gist.github.com/doozy/3ec779f14a1e83dcee393c25004aa65e

    2. You need to disable the option “Redirect to Wishlist” and use the next snippet to delay the popup close:

    add_filter( 'tinvwl_popup_close_timer', function () {
    	return 999999;
    } );

    3. The styling and animation depend on your active theme. We can’t suggest you any solution to this point, unfortunately.

    • This reply was modified 2 years, 3 months ago by templateinvaders. Reason: Added answer #3
    Thread Starter Tarjeet Singh

    (@tarjeet98)

    I highly appreciate your help! Thank you very much, I will try these and will get back to you within 24 hours.

    Thread Starter Tarjeet Singh

    (@tarjeet98)

    Thanks it works great, just the problem is the image is coming above the text and with no div, so I have to figure that out. Thank you tho!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How do I display product image/thumbnail in “show successful notice in popup”’ is closed to new replies.