trmkr
Forum Replies Created
-
Hi Gerard,
Thank you very much for your help. Both ShortPixel and reSmush.it are great plugins. I prefer reSmush.it for its simplicity and performance. Looking forward to the updates ??
Best Wishes
Hi Gerard,
Thanks for your reply. I have restored my single image using the Media Library option you provided, but it does not delete the “unsmushed” backup image. Therefore, there is a compatibility issue with ShortPixel’s “Enable Media Replace” plugin. I cannot replace the original image because of the “unsmushed” backup file. You can see the details below.
https://i.ibb.co/QJKq9Qv/reSmush.jpg
Thanks in advance.
Forum: Plugins
In reply to: [Slim SEO - Fast & Automated WordPress SEO Plugin] Meta description tagsHi Tran Ngoc,
Thank you for the clear explanation!
Best regards
Hello Charles,
Thank you for your reply. I checked again today, and the result is the same. “Do not preserve backups” is always unchecked. Otherwise, there would be no “smushed” copy.
Can you check again please?
Thank you!
Hi Hessel,
Yes, I installed WordPress on a free hosting environment with low resources. I also installed the plugin environment a different environment with high resources and there were no issues.
I will be waiting for the update.
Thank you!
Hi Hessel,
Thank you for your reply. Yes, there are some errors in the console. I have attached the screenshot.
Thank you!
Forum: Plugins
In reply to: [GTM4WP - A Google Tag Manager (GTM) plugin for WordPress] reCaptchaHello,
I found out that additional scripts were caused by another plugin.
Forum: Plugins
In reply to: [Slim SEO - Fast & Automated WordPress SEO Plugin] image alt tag filterThank you ??
Forum: Plugins
In reply to: [Yoast SEO] Prevent crawling of internal site search URLsThank you! I discovered that if robots.txt already exists, it is not updated. However, if Yoast creates the file for the first time, these lines are added.
# START YOAST BLOCK # --------------------------- User-agent: * Disallow: /?s= Disallow: /search/ Disallow: /wp-json/ Disallow: /?rest_route= Sitemap: https://mywebsite.com/sitemap_index.xml # --------------------------- # END YOAST BLOCK
Regards
Forum: Plugins
In reply to: [SEO Plugin by Squirrly SEO] exclude product from sitemapHi Peter,
Thank you for your efforts! This code solved my problem. I tested it and it works perfectly! Thanks for this great SEO plugin.
Regards
Forum: Plugins
In reply to: [SEO Plugin by Squirrly SEO] exclude product from sitemapHi Peter,
I have ~500 products and ~300 of them are out of stock. I want to exclude all out of stock products from sitemap. I would be grateful if there is an easy way to do this. I used this code for noindex tag.
//Hook the Squirrly sq_noindex for post_ids add_filter('sq_noindex', function ($robots) { $robots = array(); global $post; if ($post->post_type == 'product') { $product = wc_get_product( $post ); if (!$product->is_in_stock()) $robots[] = 'noindex'; $robots[] = 'nofollow'; } return $robots; }, 11);
Regards
- This reply was modified 1 year, 7 months ago by trmkr.
Forum: Plugins
In reply to: [SEO Plugin by Squirrly SEO] hide author and publisher namesDear Peter,
Thank you for your reply. I think I was not clear enough. I removed the first line by disabling Dublin Core meta feature. However I couldn’t remove the second line from ld+json script. Can you help please?
<meta name="dc.publisher" content="admin" /> // Dublin Core "author":{"@type":"Person","@id": //ld+json
Regards
Forum: Plugins
In reply to: [Yoast SEO] Pingback HTTP headerHello Maybellyne,
Thank you for reply. I couldn’t load the image in the original post. You can find it here.
Thank you!
Hello,
I updated to version 2.3.2 and API key is lost again. Also, the plugin does not accept the API key. Can you help please?
Regards
Forum: Plugins
In reply to: [WP Super Cache] exclude out of stock products from preloadingThank you! I added this code:
if( is_product() && ! defined('DONOTCACHEPAGE') ) { global $product; if ( ! $product->is_in_stock() ) { define( 'DONOTCACHEPAGE', true ); } }
Regards