waldymar
Forum Replies Created
-
Forum: Plugins
In reply to: [Code Snippets] Site Broke – Issues with version 2.14.4I updated your plugin to 2.14.5. All pages of the website are working, but not the home page. It’s blank with a message “There has been a critical error on this website.”. My website is job-cy.com. Kindly assist me.
Forum: Plugins
In reply to: [WP Job Manager] My Jobs to Be Added to Job AggregatorsWhich one?
Forum: Plugins
In reply to: [Go Fetch Jobs (for WP Job Manager)] Exclude Job Irrelevant informationOverall, all my feeds have this issue. Please have a look:
http://rss.careerjet.com/rss?s=Russian&l=Cyprus&
http://rss.careerjet.com/rss?s=&l=Cyprus&Is there any way not to include such irrelevant information?
Forum: Plugins
In reply to: [WP Job Manager] reCAPTCHA mobile versionAlready fixed it! This is the code to be put in the Additional CSS section:
/* Captcha mobile version */ .fieldset-recaptcha > div { min-width: 280px; }- This reply was modified 6 years, 6 months ago by waldymar.
Forum: Plugins
In reply to: [WP Job Manager] Alternatives to Paid Listings PluginsIf I don’t have neither Stripe nor Paypal accounts, how can I get payments? WC Paid Listings solves this problem?
Forum: Plugins
In reply to: [WP Job Manager] Search Filter in SnippetNoted, thank a lot
Forum: Plugins
In reply to: [WP Job Manager] Search Filter in SnippetSuch overriding will be affected by any updates (plugin, wordpress etc)?
Forum: Plugins
In reply to: [WP Job Manager] Output LocationSorted it out. Instead of using taxonomy, I chose to use a simple dropdown. Thanks everyone for assistance, appreciate. Solved!
Forum: Plugins
In reply to: [WP Job Manager] Output LocationUnderstood, Richard! I checked the error log and you might be right:
[05-Jul-2019 18:58:09 UTC] PHP Warning: strtolower() expects parameter 1 to be string, array given in /home/jobmarke/test.job-cy.com/wp-content/plugins/wp-job-manager/includes/class-wp-job-manager-geocode.php on line 197 [05-Jul-2019 19:02:02 UTC] PHP Warning: strtolower() expects parameter 1 to be string, array given in /home/jobmarke/test.job-cy.com/wp-content/plugins/wp-job-manager/includes/class-wp-job-manager-geocode.php on line 197Is it the problem with geocode?
Forum: Plugins
In reply to: [WP Job Manager] Output LocationUfff, your links are appreciated. However, I’m not an expert in the field to read and understand them.
If I use my logic, I can retrieve the following situation:
1. I did some changes in functions.php through add_filter regarding the field job_location.
2. Then I updated theme or wordpress and probably changed have been incorporated
3. Now when I want to do changes for job_location, if I use add_filter method apply to ‘submit_job_form_fields’ it probably doesn’t fully work as previously I have already changed the initial code. Do I have to do changes to ‘custom_joblocation_submit_job_form_fields’?
Is my logic correct? If yes, how can find the exact name of supposed ‘custom_joblocation_submit_job_form_fields’?Forum: Plugins
In reply to: [WP Job Manager] Output LocationI’m using a taxonomy. The taxonomy I did in 2 ways:
1. through a pods plugin (now active)
2. through a snippet (not active)
by the way, which way is more preferable?The code in the snippet is the following:
function gds_create_taxonomy_location() { register_taxonomy( 'location_listing', 'job_listing', array( 'labels' => array( 'name' => __( 'Locations' ), 'singular_name' => __( 'Location' ), 'search_items' => __( 'Search Location' ), 'all_items' => __( 'All Locations' ), 'edit_item' => __( 'Edit Location' ), 'update_item' => __( 'Update Location' ), 'add_new_item' => __( 'Add New Location' ), 'new_item_name' => __( 'New Location' ), 'menu_name' => __( 'Job Location' ), ), 'hierarchical' => false, 'rewrite' => array('slug' => 'location_listing'), ) ); } add_action('init', 'gds_create_taxonomy_location');Then I did a code change for location frontend through a snippet:
add_filter( 'submit_job_form_fields', 'custom_location_field' ); // This is your function which takes the fields, modifies them, and returns them // You can see the fields which can be changed here: https://github.com/mikejolley/WP-Job-Manager/blob/master/includes/admin/class-wp-job-manager-writepanels.php function custom_location_field( $fields ) { // Here we target one of the job fields (location) and change it's placeholder $fields['job']['job_location']['type'] = "term-multiselect"; $fields['job']['job_location']['taxonomy'] = "location_listing"; $fields['job']['job_location']['placeholder'] = "Choose a location…"; $fields['job']['job_location']['description'] = ""; // And return the modified fields return $fields; }Forum: Plugins
In reply to: [WP Job Manager] Output LocationHow to fix it, any ideas?
Forum: Plugins
In reply to: [WP Job Manager] Output LocationMaybe it’s showing location value from “company profile” location which I dissabled?
Forum: Plugins
In reply to: [WP Job Manager] Job Listing half widthThank you for your reply. How can I change those parameters? Please guide me as I’m not an IT guy. I’ve bought a payment plugin and this problem is one of the last to launch my website.
Forum: Plugins
In reply to: [WP Job Manager] WP Editor Preset TextSorry, I didn’t find the answer to my question from your link. Can you kindly point me where to look into?