• Hello i want to execute custom js after the voting is successful.

    This is the code I m using:

    RW.init("pk_f62b828fd5f3796d44212acb68743", {
       afterRate: function(success) {
          if (success) {
            console.log('dada');
          }
       }
    });
    
    RW.render();
    and the second one is:
    options.afterRate = function(success) {
        console.log('dada2');
    }

    https://wordpress.org/plugins/rating-widget/

  • The topic ‘Can execute custom js after the rating is successful’ is closed to new replies.