mrkhanakia
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoast SEO] Cannot update or type anything in advanced tab@jeroenrotty i did not check the issue further
Forum: Plugins
In reply to: [Contact Form 7] Site Speed Slower after Update TodaySame issue.
CF7 Started adding many different JS FilesHi,
I figured out actually i had the font hardcoded as HTML and that’s only available in PRO version i believeForum: Fixing WordPress
In reply to: wordpress website create .htaccess files automatic in all folder@hossman333 Great you resolved the issue ??
Forum: Fixing WordPress
In reply to: wordpress website create .htaccess files automatic in all folder@hamzasaadat567
It’s just a malware which creates .htaccess files.
What i did to resolve my problem is:1. Installed the Wordfence Plugin
2. Scan the Website
3. I downloaded the fresh copy of the wordpress
4. Replace the wp-admin, wp-includes directory with the fresh copy
5. Updated all the plugins
6. Installed the Wordfence Plugin
7. Scan the Website againThanks @tezizone
@hvtrieu How did you solve the issue. I see you website is working correctly.
I am having the same issue. Just updated the plugin and woocommerce and facing the same issue. We are using roadthemes.
Link to the website where i have error
https://mobilegoo.shop/product/mens-gen-4-explorist-hr-heart-rate-stainless-steel-touchscreen-smartwatch/Forum: Plugins
In reply to: [Mailchimp for WooCommerce] Error thrown at login@ryanhungate Woocommerce-Version 4.0.1 and WordPress 5.5.1
Forum: Plugins
In reply to: [Mailchimp for WooCommerce] Error thrown at login@ryanhungate I just installed the latest plugin 2.4.6 and getting the same error. When the error will be fixed ?
Forum: Fixing WordPress
In reply to: WordPress created .htaccess file in wp-admin automatically@t-p I have many different sites and in all of them .htaccess created by default.
I have checked all the plugins nothing usual. But i am using MANAGE WP to manage my websites. Can this cause issue ?Forum: Fixing WordPress
In reply to: wordpress website create .htaccess files automatic in all folder@axifhussain
Did you find the solution ?I am having the same problem .
Hi YvonneTaylor,
Can you show me the exact page and also screenshot of error you getting.I was getting the same bug for Taxonomy Pages
Just add below code in your theme functions.php to fix that issue in YOAST SEO 3.0.7 Pluginfunction wpdocs_dequeue_script() {
if ( $GLOBALS[‘pagenow’] === ‘edit-tags.php’ && filter_input( INPUT_GET, ‘action’ ) === ‘edit’ ) {
$term = filter_input( INPUT_GET, ‘taxonomy’, FILTER_DEFAULT, array( ‘options’ => array( ‘default’ => ” ) ) );
$taxonomy = get_taxonomy( $term);
$is_public = $taxonomy->public;
echo “arya”;
if ($is_public===false) {
wp_deregister_script( ‘wp-seo-term-scraper’ );
}
}
}
add_action( ‘admin_enqueue_scripts’, ‘wpdocs_dequeue_script’, 100 );