Quote from
jevo1900 on February 27, 2019, 5:41 pm
I’m currently doing a level system for the forum, but I don’t know how I can update a profile value with the hook, I tried with that:
function submit_info($postID, $topicID) {
global $asgarosforum;
$authorId=$asgarosforum->get_post_author($postID);
echo $exp=get_user_option( "exp", $authorId );
$exp=$exp+5;
update_user_option( $authorId, 'exp', $exp, false);
}
add_action('asgarosforum_after_add_post_submit', 'submit_info', 10, 2);
but it doesn’t run, how can I do this? Need I use another hook?
I’m currently doing a level system for the forum, but I don’t know how I can update a profile value with the hook, I tried with that:
function submit_info($postID, $topicID) {
global $asgarosforum;
$authorId=$asgarosforum->get_post_author($postID);
echo $exp=get_user_option( "exp", $authorId );
$exp=$exp+5;
update_user_option( $authorId, 'exp', $exp, false);
}
add_action('asgarosforum_after_add_post_submit', 'submit_info', 10, 2);
but it doesn’t run, how can I do this? Need I use another hook?