Naveen Dsouza
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Astra] Odd Behavior: Mobile menu vs. Desktop MenuHi @rcapaccio,
Please refer to this thread it may help you.
Forum: Plugins
In reply to: [Yoast SEO] Breadcrumbs issue after transferring blogHi @suascat_wp
I followed above steps. Looks like “Reset indexables & migrations” is renamed to “Reset indexables tables & migrations”. Above steps does not solved Breadcrumbs issue. Shall I manually untick and retick categories? Now it is not big problem because I has to edit all posts as all internal links are pointing to old domain’s posts.
The above steps solved another small issue.
Before following the above steps number of internal links to posts is showing zero in the WordPress dashboard, after following above steps Yoast SEO is showing one internal link for all pages. Can you tell me whether that one internal link is from home page or category pages?
https://monosnap.com/file/kzEFu0vfYohaiOGLuCVEc1uLPtaPMb
https://monosnap.com/file/3gAYiHIefeLNTzV54JiiMs4PyIkJGkForum: Plugins
In reply to: [LiteSpeed Cache] Error when editing functions.phpNow I can edit functions.php without disabling LSCWP. I don’t know what went wrong on that day.
Forum: Plugins
In reply to: [LiteSpeed Cache] Error when editing functions.phpHi,
I edited via the WP-admin theme editor.
I tried to remove the following code from child themes functions.php. As I don’t need that code since your plugin removes emoji.
remove_action( 'wp_head', 'print_emoji_detection_script', 7 ); remove_action( 'wp_print_styles', 'print_emoji_styles' );
I also tried to add and remove other codes from functions.php. Also, I tried with the default theme and with my other blog but got the same error.
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] Table header without boxThanks for fixing this in version 1.0.16. After this update text align inside table not working. Please give me solution – https://www.ads-software.com/support/topic/amp-version-aligns-text-in-table-to-central/
Thanks for fixing.
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] Image not showing in AMP pagesThanks for your reply. The issue was solved. I tick marked “delete data on uninstall” in your plugin option then I uninstalled the plugin and reinstalled again and everything was fine.
When I faced this issue I disabled AMP on my top posts. Yesterday I viewed my blogs performance in Google Search console and the posts in which I disabled AMP, performed better in Google Ranking. To do more tests I deactivated your plugin and activated Google’s AMP plugin.
Earlier I am using Google’s AMP plugin then I used your plugin because in your plugin it was easier to show ads. Then your plugin recommended “Ads for WP” plugin. So I used that plugin to show ads. But they don’t provide support https://www.ads-software.com/support/topic/matched-content-ads-not-showing/ so I uninstalled that plugin. In your plugin it is not possible to show Matched content ads and Sticky ads. I am using Astra theme in my blog, now I am using Astra Hooks to show ads.Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] Image not showing in AMP pagesI uploaded logo image, now logo is showing in AMP pages. Can you give solution for other issues – Images in some posts are not showing and text lines are very near in some posts.
Today I transferred my another blog to NGINX in that blog only site logo was not showing.After looking many posts in my blog I found that If there are two images in a post then first image is not showing but second image is showing. Paste these URLs after domain name “cds-full-form/amp/”,”cad-full-form/amp/”,”ide-full-form/amp/”
Forum: Plugins
In reply to: [Hubbub Lite - Fast, Reliable Social Sharing Buttons] socialpug.woff issuesI am using Astra theme in my blog and I am not using their default font but still it loads in every page and they gave me this code to paste in functions.php file
add_filter( 'astra_enable_default_fonts', '__return_false' );
and it worked.It would be much helpful to us, If plugin contributor gave us similar code to disable plugins default font.
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] Table header without boxJust now I updated plugin into version 1.0.9. My issue is not related to css. As I only added this css to that table. This problem happens when I turn On “Header Section” and add header for table using that option. https://monosnap.com/file/AgZAy3r8WShGDYEnfNcoQqeGJA8saQ
It is easier to add header using this option as I not needed to bold that text.
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] Table header without boxServer is down for some time. Please check now. Here is the link for non-amp page https://allfullform.com/cad-full-form/#other
Following is the solution I received from them using their Help Center.
You have to add the below CSS code to the Custom CSS field. follow the below steps to add the code
.sgl table { text-align: left; }
1. Go to AMP Panel -> Desing -> Global
2. Enter the above code to the “Custom CSS” section and save it.
https://monosnap.com/file/oUZZ4pq90ZcI5YsGiAQdYXICuCgMELForum: Plugins
In reply to: [AMP] webp image not loadingHi @westonruter I am not good at creating new html code.
So in the end, I think you should just serve the JPEG version on AMP pages in a regular img which the AMP plugin will convert to amp-img.
How?
I found two solutions for displaying webp images in AMP & non-AMP
1) Just HTML code
from here https://amp.dev/documentation/components/amp-img/#example:-specifying-a-fallback-image<picture> <source srcset="/wp-content/uploads/2019/11/rna.webp" type="image/webp"> <img src="/wp-content/uploads/2019/11/rna.jpg" alt="RNA" class="wp-block-image"> </picture> <amp-img alt="RNA" width="768" height="432" layout="responsive" src="https://allfullform.com/wp-content/uploads/2019/11/rna.webp"> <amp-img alt="RNA full form" fallback width="1920" height="1080" src="https://allfullform.com/wp-content/uploads/2019/11/rna.jpg"></amp-img> </amp-img>
I think in above AMP code first alt is of no use because if image not found then even AMP page is showing “RNA full form” as image alt instead of “RNA”.
2) HTML code & .htaccess file
from here https://www.ads-software.com/support/topic/is-it-possible-to-upload-webp-images-directly/
a) HTML code<img src="/wp-content/uploads/2019/11/rna.jpg" alt="RNA" class="wp-block-image">
b) .htaccess code<ifModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTP_ACCEPT} image/webp RewriteCond %{REQUEST_URI} (?i)(.*)(\.jpe?g|\.png)$ RewriteCond %{DOCUMENT_ROOT}%1.webp -f RewriteRule (?i)(.*)(\.jpe?g|\.png)$ %1\.webp [L,T=image/webp,R] </IfModule> <IfModule mod_headers.c> Header append Vary Accept env=REDIRECT_accept </IfModule> AddType image/webp .webp
Please suggest me which method is good for minimum request and to save bandwidth.
Forum: Plugins
In reply to: [AMP] webp image not loadingHi @pierlo I disabled AMP plugin for some time. Now I activated AMP plugin. Please check now.
Sorry for creating two topics another one will be closed.
Thanks for your reply. Social Pug is a great plugin and loads quickly when I compared with other social share plugins.
Now I am not using that font in my blog but still that font loads in every post.
Is there any way to only block that font from loading?