foriaa
Forum Replies Created
-
Forum: Plugins
In reply to: [XML Sitemap Generator for Google] 404 not foundI had to refresh permalinks by choosing a different URL name convention and now it’s working, thanks
Forum: Plugins
In reply to: [Contact Form 7 Signature Addon] 403 Forbidden on Form SubmitI have the same problem, but the strange thing is that I can submit the form, my client cannot.
Does anybody know the reason?Forum: Plugins
In reply to: [BuddyPress Docs] Docs inserted by back-end are not visibleForum: Plugins
In reply to: [BuddyPress Docs] Docs inserted by back-end are not visibleHi @dcavins
Thanks for replying me.
Is there any way possible to give the right permissions? Because I inserted many articles now and I don’t want to insert them again 1 by 1 from front-end.
I checked a solution from DB and PhpMyAdmin but I didn’t figure out what is the table/value.
In case there is a solution by DB, I will run a query adding the meta value to that posts.
ThxForum: Plugins
In reply to: [BuddyPress Docs] Docs visible only for logged in usersUncorrect problem
Forum: Plugins
In reply to: [Easy Forms for Mailchimp] Invalid resource in Contact 7 integrationThe form in that page doesn’t use Easy Form.
Forum: Plugins
In reply to: [Easy Forms for Mailchimp] Invalid resource in Contact 7 integrationI got the same problem:
https://propulsionacademy.com/full-stack-application/Forum: Plugins
In reply to: [Contact Form 7] Problems with translationI have the same problem with Chinese Simplified translations.
I followed all the steps from your article but I cannot get the date field labels (month and day names) translated.
A note: I saw that my CF7 installation has no language packs in the languages folder. So I downloaded them from your GitHub rep and uploaded.
But I still have the problem.Can you please help us with this issue?
This is the link to the form: https://barbarossagroup.cn/chinese/barbarossa-reservation/Thx
Forum: Plugins
In reply to: [Categories Images] z_taxonomy_image_url returns only full size imageI’m getting the same problem, by it retrieves me only thumbnail size.
@bahriddin can you please tell me how you fixed it at the end?
did you put website URL some where?Thanks
I need to change it not for the entire site but only for one page and his children.
Forum: Plugins
In reply to: [Advertising Manager] advman_ad(name) not workingHello the PHP code doesn’t work for me. I tried with and without quotes and with and without first capital letter.
I put it in the header.php.
Can you help me please?
This is is the page
https://www.startupitaliajobs.com/
It should be visible in the header on right, that one you see right now is integrated putting the ad code directly inside the header.phpThank you.
Forum: Plugins
In reply to: [WP Job Manager] Application modal with resume submission formThank you for your reply.
I can’t get the same box I saw in your picture….!
I see just the default text and the email of the company.I disabled the possibility to use gMail, Outlook, etc but not the third part…
Where I can check?
Thank you
Forum: Plugins
In reply to: [WP Job Manager] Add fields in resume submissionUsed this code and everything works fine, thanks mikejolley
// Add fields to resume submission add_filter( 'submit_resume_form_fields', 'custom_submit_resume_form_fields' ); function custom_submit_resume_form_fields( $fields ) { $fields['resume_fields']['resume_skills']['label'] = "Skills Tag"; $fields['resume_fields']['resume_skills']['description'] = "esempio: HTML, PHP, CSS"; $fields['resume_fields']['resume_file']['required'] = true; $fields['resume_fields']['promotion'] = array( 'label' => __( 'Vuoi ricevere proposte di lavoro?', 'job_manager' ), 'type' => 'checkbox', 'required' => false, 'description' => "Accetto a ricevere proposte di lavoro in Italia e in Europa in linea con il mio profilo professionale.", 'priority' => 1000 ); $fields['resume_fields']['privacy'] = array( 'label' => __( 'Privacy', 'job_manager' ), 'type' => 'checkbox', 'required' => true, 'description' => "Con l'invio del presente modulo do il consenso al trattamento dei miei dati personali a Startup Italia Jobs ai sensi dell'art. 13 del D.Lgs. 196/03.", 'priority' => 1001 ); $fields['resume_fields']['terms'] = array( 'label' => __( 'Termini e Condizioni', 'job_manager' ), 'type' => 'checkbox', 'required' => true, 'description' => "Accetto i <a href='/termini-e-condizioni/' target='_blank'>Termini e le Condizioni del servizio</a>", 'priority' => 1002 ); // And return the modified fields return $fields; } add_action( 'resume_manager_update_resume_data', 'resume_add_fields_save', 10, 2 ); function resume_add_fields_save( $resume_id, $values ) { update_post_meta( $resume_id, '_promotion', $values['resume_fields']['promotion'] ); } add_filter( 'resume_manager_resume_fields', 'custom_resume_manager_resume_fields' ); function custom_resume_manager_resume_fields( $fields ) { $fields['_promotion'] = array( 'label' => __( 'Consenso uso esterno', 'job_manager' ), 'type' => 'text', 'placeholder' => '', 'description' => '' ); return $fields; }
Forum: Plugins
In reply to: [WP Job Manager] Add fields in resume submissionI can get the field in WP but is empty and have not the value I filled it.
this is the code used:
add_filter( 'submit_resume_form_fields', 'custom_submit_resume_form_fields' ); function custom_submit_resume_form_fields( $fields ) { $fields['resume_fields']['job_salary'] = array( 'label' => __( 'Compenso desiderato', 'job_manager' ), 'type' => 'text', 'placeholder' => '', 'description' => '', 'priority' => 999 ); $fields['resume_fields']['promotion'] = array( 'label' => __( 'Vuoi ricevere proposte di lavoro?', 'job_manager' ), 'type' => 'checkbox', 'required' => false, 'description' => "Accetto a ricevere proposte di lavoro in Europa in linea con il mio profilo professionale.", 'placeholder' => 'yoooooo', 'priority' => 1000 ); $fields['resume_fields']['privacy'] = array( 'label' => __( 'Privacy', 'job_manager' ), 'type' => 'checkbox', 'required' => true, 'description' => "Con l'invio del presente modulo do il consenso al trattamento dei miei dati personali a Startup Italia Jobs ai sensi dell'art. 13 del D.Lgs. 196/03.", 'priority' => 1001 ); $fields['resume_fields']['terms'] = array( 'label' => __( 'Termini e Condizioni', 'job_manager' ), 'type' => 'checkbox', 'required' => true, 'description' => "Accetto i <a href='/termini-e-condizioni/' target='_blank'>Termini e le Condizioni del servizio</a>", 'priority' => 1002 ); // And return the modified fields return $fields; } add_action( 'resume_manager_update_resume_data', 'resume_add_fields_save', 10, 2 ); function resume_add_fields_save( $resume_id, $values ) { update_post_meta( $job_id, '_job_salary', $values['resume_fields']['job_salary'] ); update_post_meta( $resume_id, '_promotion', $values['resume_fields']['promotion'] ); } add_filter( 'resume_manager_resume_fields', 'custom_resume_manager_resume_fields' ); function custom_resume_manager_resume_fields( $fields ) { $fields['_job_salary'] = array( 'label' => __( 'Compenso Desiderato', 'job_manager' ), 'type' => 'text', 'placeholder' => '', 'description' => '' ); $fields['_promotion'] = array( 'label' => __( 'Consenso uso esterno', 'job_manager' ), 'type' => 'text', 'placeholder' => '', 'description' => '' ); return $fields; }
Forum: Plugins
In reply to: [WP Job Manager] Add fields in resume submissionYes I saw it, but that is useful to editing fields already in, not to add new ones…