phoenix13
Forum Replies Created
-
Forum: Plugins
In reply to: [Spectra - WordPress Gutenberg Blocks] Container layout breaking issueOk now. Perfect. Thanks !
Forum: Plugins
In reply to: [Slim SEO - Fast & Automated WordPress SEO Plugin] QuestionsYou should consider this thread in my opinion… For this reason many people will choose another SEO plugin. It’s a shame. Personally, I will continue to use Theseoframework for this reason. Please make an effort because the interface of Slim SEO is very beautiful. If you consider this thread, I’m sure you’ll pass the 100,000 install mark…
Forum: Plugins
In reply to: [Slim SEO - Fast & Automated WordPress SEO Plugin] QuestionsIf I disable auto-redirect (https://docs.wpslimseo.com/slim-seo/disable-features/)… it’s bad, because attachment pages would no longer automatically redirect to file URLs ??
How disable specific auto redirection for author’s page ?
Thanks.
Forum: Plugins
In reply to: [Spectra - WordPress Gutenberg Blocks] rel=”noopener noreferrer”Ok, thanks mohsinbsf. In the SPECTRA info box, on the action button, rel=”noopener noreferrer” is automatically applied. How to delete noreferrer on target=”_self”??
Thanks.
Forum: Plugins
In reply to: [Spectra - WordPress Gutenberg Blocks] Dependencies (jQuery)Hi,
“why you need to eliminate jQuery” : For performance reasons!
“which blocks you are refering” : You know it because it is YOUR plugin ??
Thanks.
Oops!!! I think I know where the problem came from and it has nothing to do with Shortpixel! In fact, there were already .webp images created by my old cache system (LiteSpeed)… ShortPixel is therefore not the cause of the problem ??
Hello Sybre,
The concern with the titles was not systematic. Not all pages and posts were affected. I do not know why. I didn’t have time to make screenshots, because I modified by hand and took the opportunity to buy a PRO license of The SEO Framework ! ?? I’ve tested every WordPress SEO plugin since they’ve been around (I created my first website in 1997) and The SEO Framework is the best. I can explain why, but the list of benefits is very long…
Thanks a lot Sybre !
Forum: Plugins
In reply to: [LiteSpeed Cache] LSCache is not supportedI solved this issue !
1- remove plugin LSCache
2- reinstallEnjoy.
Forum: Plugins
In reply to: [LiteSpeed Cache] LSCache is not supportedYou said “you have LScache disabled?”… LSCache for my website : is active ! … but Issue : “LSCache is not supported” (display on check.lscache.io )
How solve this issue ?
Hi,
In TSF, I indicate the url of the Facebook PRO page, but it does not appear in the header of the pages.
Forum: Plugins
In reply to: [The SEO Framework – Fast, Automated, Effortless.] Generatepress & TSFPerfect. Thanks ??
Forum: Plugins
In reply to: [LiteSpeed Cache] HSTS issue (not redirect url) with LiteSpeed CacheIn fact :
With LSCache :
https://www.mydomain.com REDIRECT https://mydomain.com
BUT
not redirect https://mydomain.com > https://mydomain.comBAD for SEO and for hstspreload.org, error display “Status: davidmocq.com is currently preloaded, but no longer meets the requirements. It may be at risk of removal.”
Without LScache : good for all redirect.
Forum: Plugins
In reply to: [Yoast SEO] xml sitemap does not display the correct number of imagesOuups… No. Image urls (not all, but some) do not appear to be valid (404) ??
Forum: Plugins
In reply to: [Yoast SEO] xml sitemap does not display the correct number of imagesHi,
It’s OK with this code :
function wpseo_xmlsitemap_add_attached_images( $images, $post_id) { $attached_images = get_attached_media( 'image', $post_id); if($attached_images){ foreach($attached_images as $attached_image){ $image_arr = array(); $image_arr['src'] = str_replace( 'https://XXXXX.com', 'https://CDN_XXXXX.kinstacdn.com', $attached_image->guid ); $images[] = $image_arr; } } array_unique($images); return $images; }; add_filter( 'wpseo_sitemap_urlimages', 'wpseo_xmlsitemap_add_attached_images', 10, 2 );