ramzesimus
Forum Replies Created
-
Forum: Plugins
In reply to: [Clean Login] WP Job Manager Clean LoginHi Alberto,
Thanks for your last update. It works but if WP_DEBUG is enabled I still got next notice
Notice: Use of undefined constant DOING_AJAX - assumed 'DOING_AJAX' in /Applications/MAMP/htdocs/testsite/wp-content/plugins/clean-login/clean-login.php on line 486
Thanks!
Forum: Plugins
In reply to: [Clean Login] WP Job Manager Clean LoginHi Alberto,
Unfortunately, it’s even worse now. If this option is unchecked and user is logged you got:
Notice: Undefined index: DOING_AJAX in /Applications/MAMP/htdocs/testsite/wp-content/plugins/clean-login/clean-login.php on line 486 Warning: Cannot modify header information - headers already sent by (output started at /Applications/MAMP/htdocs/testsite/wp-content/plugins/clean-login/clean-login.php:486) in /Applications/MAMP/htdocs/testsite/wp-includes/pluggable.php on line 1196
Checked with default theme Twenty Fifteen.
Waiting for your reply.
Thanks!
Forum: Plugins
In reply to: [WP Job Manager] Clean Login WP Job Manager issueHey Mike,
Thanks for your help. Author of ‘Clean Login’ plugin confirmed the bug and working on update. Closing this ticket.
Thanks again!
Forum: Plugins
In reply to: [Clean Login] WP Job Manager Clean LoginHi Alberto,
Thanks for your prompt reply. Waiting for update ??
Thanks!
Forum: Plugins
In reply to: [WP Job Manager] Tag archives 404 for CPTHi Ian,
Make sure that you declared
add_theme_support( 'job-manager-templates' );
in your functions.php and remember to resave permalinks.Hope it will help ??
Thanks!
Forum: Plugins
In reply to: [Regions for WP Job Manager] Shortcode parameter to filter by regionHi guys,
Faced with similar issue, and I found 2 ways how to achieve this:
1) Add ‘search_region’ query string to your url with the Jobs page and it will filter result, e.g.https://yoursite.com/jobs/?search_region=10
2) Add “selected_region” parameter to your [jobs] shortcode, e.g.
[jobs selected_region="10"]
10 – is ID of your region (Job Listings > Job Regions)
Thanks!
Forum: Plugins
In reply to: [WP Job Manager] Templates overrides don't work after update 1.20.0Thanks for your fast reply!
Forum: Plugins
In reply to: [WP Job Manager] Templates overrides don't work after update 1.20.0Looks like all of them ??
Hey,
I also noticed this issue.
It happens because anchor tag is inside anchor tag. You can strip it with strip_tags function.- Open plugins/wp-job-manager-locations/includes/class-template.php
- Change this
return get_the_term_list( $post->ID, 'job_listing_region', '', ', ', '' );
to this
return strip_tags ( get_the_term_list( $post->ID, 'job_listing_region', '', ', ', '' ) );
Cheers!
Forum: Plugins
In reply to: [WP Job Manager] Manual add on field for search formI also noticed that it works with singular ‘search_category’ and IDs (not slugs).
Thanks!
Thank you very much. It works!
Forum: Plugins
In reply to: [Widget Settings Importer/Exporter] Problem in Windows 8I have the same problem on Windows 8 x64.