irpe
Forum Replies Created
-
Forum: Plugins
In reply to: [Max Mega Menu] Undefined variable: returnHello,
thank you for fast support and fix. I will mark this as resolved!
Thanks
Forum: Plugins
In reply to: [WP Job Manager] Using custom template for RSS feedI have opened a ticket in Github so I will mark this resolved – https://github.com/Automattic/WP-Job-Manager/issues/1029
Forum: Plugins
In reply to: [WP Job Manager] Using custom template for RSS feedThank you for fast reply!
I will write to github, thank you!
Ty for reply π
I have installed/activated fresh WordPress, WP Job Manager and PODS. Pods is not extending Job Manager post types. I only activated Pods and did nothing else. I will open this as a bugfix/enhancement on your github and hopefully we can solve this π
Forum: Plugins
In reply to: [WP Job Manager] geolocation_city field is not created from addressAfter diving into code I was able to figure this out. I must say it would be nice to have good support which could help out and give a hint where is the problem..
For those who face this same problem. WPJM uses address components to show “geolocation_city” field if this address component exist. These components are not same in every country and this was the reason why some addresses were not creating “geolocation_city” field.
This can be found in “class-wp-job-manager-geocode.php” file.Address components explained
https://developers.google.com/maps/documentation/javascript/examples/places-autocomplete-addressform- This reply was modified 9 years, 6 months ago by irpe.
Forum: Plugins
In reply to: [WP Job Manager] support answer too longerLooks like support has not answered any of the questions here over a month.. I wonder what is going on..
First I created action hook field type using field editor ( https://plugins.smyl.es/docs-kb/wordpress-action-hook-field-type/?v=f0aa03aaca95 ). Also I show this field based on selected package where I want to filter job-type dropdown and placed it first in the submission form.
In the functions file
I have action hook field I created before. When action hook is present it will activate my filter function and remove job type from dropdown.
add_action('job_manager_field_actionhook_job_education_action', 'job_package_education'); function job_package_education(){ add_filter( 'job_manager_term_multiselect_field_args', 'set_tax_dropdown_list_education' ); }This function will remove selected job_types from dropdown. ( https://codex.ww.wp.xz.cn/Function_Reference/wp_dropdown_categories ).
function set_tax_dropdown_list_education( $args ){ $taxonomy = $args['taxonomy']; switch ($taxonomy){ // taxonomy here case 'job_listing_type': $args['exclude'] = 'taxonomyID'; //remove from dropdown list break; } return $args; }Hopefully my explanation is understandable
- This reply was modified 9 years, 6 months ago by irpe.
If anyone interested I edited wp dropdown categories which outputs job_types and used field editor action_hook_field. After that I was able to accomplish what I wanted
- This reply was modified 9 years, 6 months ago by irpe.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce login is not redirecting back to “post a job” pageUsed this code
Forum: Plugins
In reply to: [YITH WooCommerce Social Login] Assign different user role to the new sign-inHi,
I added this to my child themes functions.php file but for some reason it is not working. All new users gets ‘customer’ role.
Any help?
- This reply was modified 9 years, 9 months ago by irpe.
Forum: Plugins
In reply to: [WP Job Manager] Jobify – wp job manager – post a job Image problemHello, I have almost the same problem. I’m using Jobify and WP job manager. When I submit a job from frontend, company logo replaces featured image. This problem disappeared when we deleted all the jobs we had created but after a while it came back.