Features
Added report system for requests, users and messages
Starting with 556, the reporting system is significantly improved, especially for admin, but also for users.
Enable or disable report target
Report emails
Report reasons
All reports
Job/Request report
User report
Message report
Front report buttons
Improvements
Improved job report system
Check the information above, from the ‘Features’ section.
Added option to allow HTML code inside emails
Added separated buttons for PayPal withdrawal methods (manual and automatic)
Added filter for languages list
To add a new language, which is not in the WordPress dropdown, add the following code to child theme, functions.php file:
add_filter( 'wpj_languages_list_filter', 'my_new_languages', 10, 1 );
function my_new_languages( $language_codes ) {
$language_codes['mnl'] = __( 'My new language', 'wpjobster-child' );
return $language_codes;
}