Maxdo
Forum Replies Created
-
It was about css, js. Couldn’t removed. In the meanwhile and this day I am able now to remove. Sorry . Thanks.
do not wherearesotore those exclusions
no longer plugin directory
no wp-content cache
no upload wpfc configuration folder or file
no htacess entries relevant to wp fastest cache
seems deblocked now after disabling the extension for a while.
Thanks
In this article….
If the issue persists, another site on your server is likely submitting lots of URLs to IndexNow API and using up the quota assigned to your shared IP address. This is common with websites on a shared hosting server. In this case, you may wait it out or contact your host.
Well my website OVH shared HOSTED……only 1 site…may be..
I turn this extension of for some days Will reactivate before contacting ovh
i removed it. Using Instant Indexing version 1.1.21. Still 429
generated a new api key put at the root of the website
In this plugin tab IndexNow API
the key featured is not the one at the root. Check /Change generated a new api key with no corresponding root file txt
Contact Rank Math support sending on quite old articles….Nothing works
The is nothing in debug.log despite
[21-Mar-2025 13:50:03 UTC] PHP Deprecated: usort(): Returning bool from comparison function is deprecated, return an integer less than, equal to, or greater than zero in /home/rdvgttm/www/wp-content/plugins/indexnow/admin/utils/class-indexnow-url-submission-admin-routes.php on line 540
Forum: Plugins
In reply to: [WP Job Manager] Employers- Company submissionSo when an employer submit a listing their is the field drop down presenting companies and he can select anyone ?
Thanks Peter. Wasn’t checked in customization. Thanks !!
Yes. I wondered if page cache could be rendered to block country despite IQ BLOCK country ?
It is active restrict both front and backend to France. But still not logs although having set log all visits. ??
Forum: Plugins
In reply to: [WP Job Manager] WP JOB MANAGER Employer/Candidate RegistrationHow to ? I try
add_action(‘user_register’, ‘assign_role_based_on_workscout_form’, 10, 1);
function assign_role_based_on_workscout_form($user_id) {
if (isset($_POST[‘user_role’])) {
$selected_role = sanitize_text_field($_POST[‘user_role’]);if (in_array($selected_role, ['employer', 'candidate'])) { $user = new WP_User($user_id); $user->set_role($selected_role); } }}
Forum: Plugins
In reply to: [WP Job Manager] Employers- Company submissionHello Deric
Moderation is on but it stay manual and times consuming to check this case.
If there any mean to avoid this. In the company submission in the field company only list the company the current employer created ? Some php ? I can overwrite he module in my child theme
Thanks.
Forum: Plugins
In reply to: [WP Job Manager] Post a job – WP JOB MANAGERI am using JobHunt Theme.
When importing demo data, this theme added custom fields to WP Job Manager such as Gender Career Level… Those field appear on the submit job form of WP Job Manager and are not take in consideration in the php code occurring an error when submitting. Those fields do not exists in the php code. Displayed then, optional and leading to invalid field. How can I correct. I try add filter in the child theme to remove those fields with no success
add_filter( ‘submit_job_form_fields’, ‘mon_hook_retirer_champs’, 9999 );
function mon_hook_retirer_champs( $fields ) {
if ( isset( $fields[‘job’][‘job_experience’] ) ) {
unset( $fields[‘job’][‘job_experience’] );
}
if ( isset( $fields[‘job’][‘job_career_level’] ) ) {
unset( $fields[‘job’][‘job_career_level’] );
}
if ( isset( $fields[‘job’][‘job_gender’] ) ) {
unset( $fields[‘job’][‘job_gender’] );
}
if ( isset( $fields[‘job’][‘job_industry’] ) ) {
unset( $fields[‘job’][‘job_industry’] );
}
if ( isset( $fields[‘job’][‘job_qualification’] ) ) {
unset( $fields[‘job’][‘job_qualification’] );
}
// etc.
return $fields;
}Forum: Plugins
In reply to: [WP Job Manager] Post a job – WP JOB MANAGERForum: Plugins
In reply to: [WP Job Manager] Post a job – WP JOB MANAGERThe error still occurs. Fields are optional but when clicking Preview to submit there remains this king of error. Field is invalid.
Could someone having facing this issue can help me ?