Creativemind18
Forum Replies Created
-
Never mind. Thanks.
I can’t seem to understand your response. Are you saying that the front-end job description editor does not retain formatting by default when pasted? So i don’t have to bother about a functionality that doe not exist? Please be more clear with you response
Thanks for your clarification, I will contact you through your contact form if I have other questions about the pro. But for now, if I may ask, the functionality of: Who will have permission to Quiz menu, is it available in the free version? If it’s in the free version, where do I enable that in the plugin?
You are one of the few plugin developers that always find a way of resolving their users challenges and i have respected you for that.
Please do not abandon this my request unresolved. I will be grateful if you can help with further observation of this issue to know why your snippet did not resolve my the issue.
This really mean so much to me.
I await your response.
Thanks.
Yes i have been using child theme, i actually added the code to my functions.php file in child theme but it did not work at all. I tried it in child it did not work, i also try adding it via code snippet plugin still it did not work.
I tried this code in 3 sites where i have wp job manager plugin and MAS Companies For WP Job Manager plugin active. The code did not work in any of the sites.
Did you try this code at your end, is it working at your end? Because adding the code did not seem to change anything on the single company page at all.
Please any further help will be appreciated.
Thanks.
I have added the code you provided to my functions.php but unfortunately it did not work, nothing seems to change on the single company page after adding the code. All open jobs of a company still show without limitation.
Kindly check your code if you need to do any modification to make it work.
I await your usual quick response.
Thanks.
- This reply was modified 2 years, 4 months ago by Creativemind18.
Forum: Plugins
In reply to: [WP Job Manager] Problem With Admin Job Submission Form Fields After UpdateAt last i was able to figure out a working code, i discovered that wpjm made a change to the hook that controls the field in admin.
For those that might be having the same problem after update, use the snippet below to hide fields like company tagline, company twitter, company video etc in admin. You can add more field to the code as needed.
add_filter( 'job_manager_job_listing_wp_admin_fields', 'custom_job_manager_job_listing_data_fields' ); function custom_job_manager_job_listing_data_fields( $fields ) { unset($fields['_company_tagline']); unset($fields['_company_video']); unset($fields['_company_twitter']); return $fields; }
Hope this help someone.
Cheers!
Forum: Plugins
In reply to: [WP Job Manager] Problems after update Job_salary dissapeared@ibiza69 and @erania-pinnera,
Good news to to you both, i just figured out a working code to hide the fields after my last comment.
WPJM actually change the hook in their last update, so the old hook no longer work. The code below works for the latest version:
add_filter( 'job_manager_job_listing_wp_admin_fields', 'custom_job_manager_job_listing_data_fields' ); function custom_job_manager_job_listing_data_fields( $fields ) { unset($fields['_company_tagline']); unset($fields['_company_video']); unset($fields['_company_twitter']); return $fields; }
Hope you guys find this useful.
Cheers!
Forum: Plugins
In reply to: [WP Job Manager] Problems after update Job_salary dissapeared@ibiza69 and @erania-pinnera,
I don’t think this current issue has anything to do with
Job_salary
issue.For me, i don’t have issue with hiding fields in frontend job submission form, i’m only having issue with hiding those fields in the admin area after the latest update.
I’m still working on trying to get a working code to hide field in the backend.
However, i have also opened a separate thread for this issue since WPJM team are no longer replying this Thread, probably because this is not the original purpose of the thread and was initially marked as resolve.
Below is the link to the thread i open for this backend field hiding issue, you can join the thread. Maybe they will reply if they see reports from different users.
- This reply was modified 2 years, 8 months ago by Creativemind18.
Forum: Plugins
In reply to: [WP Job Manager] Problem With Admin Job Submission Form Fields After UpdateWell, adding _ has always be the right way to target wpjm field in the backend except the field is in the frontend. As for adding [‘company’] , yes in theory that suppose to be the right way to go but unfortunately, with [‘company’] added, the code neither work in latest version: 1.36.2 non previous version 1.35.3 Your suggested code below is not working in both the latest version and the previous version:
unset($fields['company']['company_website']); unset($fields['company']['company_tagline']); unset($fields['company']['company_video']); unset($fields['company']['company_twitter']);
I have taken my time to test various codes in both the latest version and the previous version. The code below only works for me in the previous version but does not works in the latest version, hence i opened this thread.
unset($fields['_company_website']); unset($fields['_company_tagline']); unset($fields['_company_video']); unset($fields['_company_twitter']);
This whole issue started after the release of the latest version 1.36.2. I think WPJM made a recent change to their core files which invalidated this code.
WPJM should please look into this issue to enable me update to the latest version because i am currently stuck in the previous version because of this issue.
Thanks.
- This reply was modified 2 years, 8 months ago by Creativemind18.
Forum: Plugins
In reply to: [WP Job Manager] Problems after update Job_salary dissapearedI’m having this same issue with initially hidden job submission form fields in admin returning after update to the latest version.
Have you manage to find a fix for this? If you do please share with me.
Forum: Plugins
In reply to: [Default Featured Image] Use different default image for different post typesThis worked well, thank you.
Ok, thanks for your response.
But generally, i know that it is possible to have hierarchical in custom post type. So how do i enable hierarchical in company CPT to enable me have parent and child relationship. I will be OK with this, if you can assist me on this.
I await your response.
Thanks.
Ok thanks
Forum: Plugins
In reply to: [MAS Companies For WP Job Manager] How to create additional company categoryAs i did not get response from you early, i managed to resolve this before now.
All the same, thank you for your response and solution.