dti06
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Job Manager] edit/remove fields in job formI think I wasn’t clear in my question.
I was talking about the form in the admin panel (WP_Job_Manager_Writepanels)
I don’t need to modify the front-end form because I won’t use it, only the admin (me) will be able to post a new job.So, my question is: How do I remove fields in the admin “Ad job” post form “job informations”?
I don’t want to do it the hard way (removing some code in your files) because it would be a mess and tricky to maintain when making updates.ps: I’ve modified the front-end templates via mytheme/job_manager folder as requiered in your documentation. It would be great if I could do the something similar for the admin form.
Forum: Plugins
In reply to: [WP Job Manager] edit/remove fields in job formok, I tried this but nothing happened
function supprimer_champs_inutiles($fields) { unset($fields['company']['company_name']); unset($fields['company']['company_website']); return $fields; } add_filter('submit_job_form_fields', 'supprimer_champs_inutiles');
appreciate any advice, I’m a kind of newbie
First of all, there is something wrong with your layout.
Personally I wrote some css rules to show/hide some div and i works fine.
It’s only a question of css rules well defined for each resolution. It’s not so hard to do, with firebug, you should find out how to fix it.If this can help, add the following css rules :
@media only screen and (max-width: 640px) {
#aec-modal-container {
width: 90% !important;
}
#aec-modal-container {
height: auto !important;
}
#aec-modal-container .aec-content {
height: 300px !important;
overflow: auto !important;
}
}Works for me on iPhone. the popup content is scrollable