• Resolved malasaad82

    (@malasaad82)


    Hi,
    I there any filter or hook can write to redirect to a page after voting?

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Lester Chan

    (@gamerz)

    Sorry nope.

    I need this feature too. Looking for a voting plugin where a user can br redirected to a URL after voting or like/dislike.

    Thread Starter malasaad82

    (@malasaad82)

    Hi Markzuckerbels,
    I have solved it by writing small Javascript code, So after click on the image (.post-ratings img) from the url page-listing-votes will redirect to url thanks-page. You may need to change the urls as you want.

            // Redirect to page after Voting
            $('.post-ratings img').click(function() {
                $.ajax({  
                    url: 'page-listing-votes', 
                    success: function(data){
                      window.location.href = "thanks-page";                    
                    }
                });
            });
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Redirect to page after voting’ is closed to new replies.