Hello,
I run Newspaper v6.5 on my website. The domain name is http://www.naukrinama.com
I want to do the following :
a. I have feeds from my Hindi site : http://www.naukrinama.com/hi/feed which I want to show at the bottom of my post detail page (below the comment section) in the form of design like the Related Articles Block. Is there any block on the theme which parses an RSS feed and displays the data there ? and also how can that block be placed below the comments section. And if not comments section how can it be added as a widget in the righthand sidebar.
b. I have a menu option named “Hot Vacancies”. I want to Highlight it using Red color background and make it blink. How can it be achieved ?
c. I have two option of Language selection in the top “English” and “Hindi”. In the top bar menu i want to blink the “Hindi” menu item with a suitable color and background and make the color and selection background of “English” more prominent.
d. The published date, creation date of the post is coming wrong. It is showing timezone as +00:00. I have already set the timezone in the wordpress settings as UTC+5:30 and while creating a post the time in the backend is shown correctly but in the front end it is coming wrong. How can this be corrected ?
<div class=”td-post-date”><time itemprop=”dateCreated” class=”entry-date updated td-module-date” datetime=”2016-01-06T18:30:38+00:00″ >January 6, 2016</time>
e. I tried removing the “Eliminate render-blocking JavaScript and CSS in above-the-fold content” errors in the Google Page Speed test using the steps given in the tutorial. But even after following the necessary steps none of these errors got removed. What can be done to remove these errors.
Please answer the above queries and let me know how can these be resolved.
Hello rishab55555,
a)Unfortunately, our theme does not have this option implemented for RSS feed. If you want to use this, you have to search any plugin with this functionality and check on your side how it works. You should find a lot of these plugins from WP Plugins, like this -> https://ro.wordpress.org/plugins/search.php?q=RSS
b)Please try the code below and add it in Theme panel->Custom CSS area, like this-> http://screencast.com/t/2Ogvs7nOPQ
.td-header-wrap .black-menu .sf-menu > .menu-item-159 > a:hover {
background-color:red!important;
}
The result you should see here: http://screencast.com/t/qHH2CSKzS5
c)If you want to change the color and background-color of your translate buttons, you should try the code below and place it in Theme panel->Custom CSS area.
#menu-item-44721 a {
background-color:red;
color:green!important;
}
#menu-item-1364 a {
background-color:green;
color:red!important;
}
The result you should see here -> http://screencast.com/t/k4jCricPY -> http://screencast.com/t/P2SwLPlO3l
You can adjust the values as you wish.
d)I have tested on my side the WordPRess date and seems to work properly. The WP use the normal and standard format of the date and you should not have this error. Please check your plugins because it might be caused by them.
e)First of all, you need to follow this guide: https://forum.tagdiv.com/how-to-make-the-site-faster/
There are a number of things that can go wrong with page speed. You can begin by investigating speed booster to see if it’s not disabled. The speedbooster plugin has a function that checks for active plugins. There is a list of plugins speedbooster is compatible with – http://screencast.com/t/hcjLnOqh4i2 so if you have other plugins active it will be automatically disabled.
In order to use the tagdiv speedbooster with all plugins you will need to remove this code – http://screencast.com/t/RZLIOPUNdqh
Another thing you can do is play with the priority, if it doesn’t return all js – http://screencast.com/t/7fhfjttAT8 –
http://codex.wordpress.org/Function_Reference/add_action
Please keep in mind that these insights are recommended for advanced users only so if you don’t have php knowledge I suggest you get someone to help you with this.
Hope this helps and let us know how it goes!
Thank you for the message!