Jake Morrison
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Job Manager] Search button on Jobs page (one more)Would you mind creating a page with just
[jobs]so I can see if there are any hints to why the Ajax call is failing?Have you tried enabling debugging and checking the debug log (default:
/wp-content/debug.log)? To enable debugging, place this inwp-config.php(remove when done debugging):error_reporting( E_ALL | E_STRICT ); @ini_set( 'log_errors', true ); define( 'WP_DEBUG', true ); define( 'WP_DEBUG_LOG', true ); define( 'WP_DEBUG_DISPLAY', false );See https://codex.wordpress.org/Debugging_in_WordPress for more info.
Jake
Forum: Plugins
In reply to: [WP Job Manager] Job Type Selector Not WorkingThe fix was just released in 1.31.2.
Forum: Plugins
In reply to: [WP Job Manager] Job Type Selector Not WorkingThanks for the reports. We’ll release a small point release fix for this tomorrow. If you catch any other similar issues, please report it in the forum.
Hi there!
I’ve created a enhancement request for being able to pre-select by job type in the query string.
I’ve also added a temporary workaround snippet that you can add to your theme’s
functions.phpor through a Snippets plugin.Forum: Plugins
In reply to: [WP Job Manager] Change email notification address?No, all filter documentation is currently just inline. We hope to have more filter docs up soon.
Forum: Plugins
In reply to: [WP Job Manager] Change email notification address?Right now it is just available by adding a snippet to your theme’s functions.php file or using a Snippet plugin:
// Admin Updated Job Notification add_filter( 'job_manager_email_admin_updated_job_to', function( $email ) { return 'email@example.com'; } ); // Admin New Job Notification add_filter( 'job_manager_email_admin_new_job_to', function( $email ) { return 'email@example.com'; } ); // Admin Expiring Job Notification add_filter( 'job_manager_email_admin_expiring_job_to', function( $email ) { return 'email@example.com'; } );- This reply was modified 8 years, 1 month ago by Jake Morrison.
- This reply was modified 8 years, 1 month ago by Jake Morrison.
- This reply was modified 8 years, 1 month ago by Jake Morrison.