Answer by Prayag Verma for Reduce critical chain in Google Page Speed...
The issue occurs because the test is run on the HTTP version of the website which gets automatically redirected to the HTTPSRunning the PageSpeed Insights tool directly on the HTTPS version of the...
View ArticleAnswer by Prayag Verma for How to change blogger post snippet length without...
This issue arose because data:post.body data tag contains the whole content of the post including the HTML unlike the data:post.snippet or data:post.longSnippet data tags which strip these away...
View ArticleAnswer by Prayag Verma for How to change the order in which elements load on...
The featured post section requires JavaScript to render but currently that Javascript is executed only after all the HTML is loaded on the page (likely to prevent render blocking issues).Currently...
View ArticleAnswer by Prayag Verma for How to resize thumbnail size without using js in...
Using on-the-fly image resizing services would be a way forward in this scenario Google has an undocumented endpoint used for on-the-fly image resizing. As explained in...
View ArticleAnswer by Prayag Verma for Blogger, How to Change Thumbnail Size for the...
Using Google's on-the-fly image resizing service would be a better approach in this case. As explained by Carlo Zottmann (https://stackoverflow.com/users/333272/carlo-zottmann) in...
View ArticleAnswer by Prayag Verma for How to get the link from blogger video by the...
To summarize the solution that we reached in the comments above. This will require writing server-side logic in the language of your choice to extract the actual video link using the Video ID or Video...
View ArticleAnswer by Prayag Verma for How can I embed an iframe with HTTP URL into Blogger
Blogger provides an option to Dismiss the warning. Refer to the screenshot -Once that warning has been dismissed and you try to save the post once again, Blogger doesn't show any warning and saves the...
View ArticleAnswer by Prayag Verma for Some Blogger label pages only showing 4 articles,...
This is likely happening because of auto-pagination being triggered by the contents of one of the posts. Adding Jump Breaks to all the posts in this label would help in this scenario. To add it, go...
View ArticleAnswer by Prayag Verma for How to replace a string in a thumbnail URL in...
In v2 Blogger templates, data:post.featuredImage is related to the Popular Posts widget, we can use the pre-existing code -<b:with...
View ArticleAnswer by Prayag Verma for how to show Widget only in contact Page in blogger?
Use data:blog.pageId for testing whether a particular page is being accessed<b:if cond='data:blog.pageId == "PAGE_ID"'>...</b:ifThe Page_ID can be found in the address bar when you are editing...
View ArticleAnswer by Prayag Verma for Why doesn’t loading a CSS file asynchronously...
To resolve this issue, you will need to completely remove CSS rules which are not used in the page. Asynchronously loading CSS files will not help with resolving this issueHence, there is ambiguity...
View ArticleAnswer by Prayag Verma for How do share full body content
To make this work, the snippet operator will need to coupled with jsonEscaped function. Applying this on the data:post.body data tag will get the full text of the post. snippet(data:post.body,{...
View ArticleAnswer by Prayag Verma for How to add whatsapp share button on blogger
That will require modifying the href attribute and using a data tag ( aka data:post.url). The new code will look like -<a expr:href='"whatsapp://send?text="+ data:post.url'...
View ArticleAnswer by Prayag Verma for Blogger - iframe Code doesn't work, after the...
The problem is being caused by the & symbol present in the iframe tag's src link. You will need to escape it by replacing it with & to make the iframe tag get accepted by Blogger's XML...
View ArticleAnswer by Prayag Verma for How to to make a piece of HTML in blogger only...
For v2 templates, The above code should work as expected because of the presence of blog-admin class on the span tag. This element has CSS set to display:blockonly when an admin visits the blog. This...
View ArticleAnswer by Prayag Verma for Blogger Post image Download option
For images uploaded to Blogger itself, adding the query parameter ?dl=1 at the end of the image URL will cause them to be forcefully downloaded. Another way for doing this is, by suffixing -d after the...
View ArticleAnswer by Prayag Verma for Blogger javascript not working http to https
Linebreaks within the JavaScript code leads to Syntax errors. Also PostEntries variable was referenced as postentries. Change the Javascript as follows -<script>function LoadTheArchive(TotalFeed)...
View ArticleAnswer by Prayag Verma for Making Only Links in Post Underlined
Yes, you can achieve that by using the following CSS - .post-body a { text-decoration: underline;}This will only target anchor tags present within the post content
View ArticlePosition Fixed not working when CSS Filters applied on same element in...
I am testing this on Edge 20.10240.16384.0 I have an element whose position is fixed and has CSS Filters applied to it. This works great in all browsers except Microsoft Edge, where the position of the...
View Article