This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function my_function_name() { | |
$postid = $_POST['postid']; | |
$rating = $_POST['rating']; | |
update_post_meta( $postid, 'delivery_rating', $rating ); | |
wp_die(); | |
} | |
add_action( 'wp_ajax_my_function_name', 'my_function_name' ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(function() { | |
$('.driver-rating').barrating({ | |
theme: 'fontawesome-stars', | |
initialRating: "<?php echo $averageRating; ?>", | |
showSelectedRating: true, | |
// onSelect is what triggers the saving of the rating. | |
onSelect: function(value, text, event) { | |
// Get element id by data-id attribute | |
var el = this; |