- NewspaperCreate Custom Code with the browser’s Inspector or the Live CSS Box
- NewspaperScroll Animation
- NewspaperWP Rocket and Newspaper Theme: Optimization Guide
- NewspaperHow to setup Twitch for Social Counter
- NewspaperModal Popup
- NewspaperFlex Block Settings Guide
- NewspaperAutoptimize Plugin – install and configuration
- NewspaperAdding Multiple Authors to Your Articles
- NewspaperDesign your Post Pages using the Cloud Library Templates
- NewspaperBig Grid Flex Settings
- NewspapertagDiv Composer Tutorial
- NewspaperTheme modules and blocks
- NewspaperThe Mobile Theme
- NewspaperCompare theme files – Winmerge tutorial
- NewspaperUsing Other Ads
- NewspaperBlock settings tutorial
- Using custom fonts
- Using typekit fonts
- NewspaperChild Theme Support
- NewspaperHow to Make the Site Faster
Hello,
The easiest way to do it is by using the direction alignment in CSS. Please revert your post to the standard layout and just use this simple css to apply RTL style on a specific post.
for example your current post has an id of 325 so you can use css like so:
.postid-325{
direction:rtl!important;
}
result: http://screencast.com/t/r334DfJuo0r
Unfortunately i cannot give you a permanent solution as it will require quite a bit of custom work.
You can however align the entire website by using this code in the theme panel:
body{
direction:rtl!important;
}
It will require further customization as some elements will not align properly.
I hope this helps you get closer to your goals.
Thank you!
Hi nomadhermit,
You can hide them if you are use a bit of Custom Css. First of all, please tell me what king of ads you want to hide? Below i gave you an example for an article bottom ad.
.postid-639 .td-a-rec-id-content_bottom {
display:none;
}
Using the .postid-639 in this exemple, you can target the post which you want to hide the ad. Here you can see how to change the post id: http://screencast.com/t/JRGJAfmFgp77
Another possibility would be to search other plugin to do this thing for you.
Hope this helps and let us know how it goes!
Thank you!
Hi mboydnv,
Please try the code below in your Theme panel->Custom Css area. I gave you a solution similar to the second example of your.
.td-social-icon-wrap i.td-icon-facebook:hover {
opacity: .5;
color:white;
}
.td-social-icon-wrap i.td-icon-flickr:hover {
opacity: .5;
color:white;
}
.td-social-icon-wrap i.td-icon-googleplus:hover {
opacity: .5;
color:white;
}
.td-social-icon-wrap i.td-icon-instagram:hover {
opacity: .5;
color:white;
}
.td-social-icon-wrap i.td-icon-pinterest:hover {
opacity: .5;
color:white;
}
.td-social-icon-wrap i.td-icon-twitter:hover {
opacity: .5;
color:white;
}
.td-social-icon-wrap i.td-icon-youtube:hover {
opacity: .5;
color:white;
}
The result you should see here: http://screencast.com/t/zPvvt6hYIhQ
Thank you!
Hi,
The top menu for the mobile version was hidden by default. You have a code in your custom css that displays it. If you want it to only show social icons on mobile, you need to remove this code from your custom css box:
@media (max-width: 767px)
.td-header-sp-top-menu {
display: block!important;
}}
Thank you!
Hi
To achieve that first you need to move this line of code here: http://screencast.com/t/UEVjibBSjg4t
<div class="avatar-img"> <?php echo get_avatar( get_the_author_meta( 'ID' )); ?> </div>
Then add this css in theme panel > custom code > custom css: http://screencast.com/t/LTSBs7WJjwsB
.avatar-img{
position: absolute;
}
.td_module_9 .item-details{
margin-left: 105px;
text-align: left;
}
.td_module_9 .td-post-category {
margin-left: 0;
}
Thanks!
-
This reply was modified 10 years by
Andrei L..
Hi todaybase,
Please try the code below for social media sharing boxes above the content
.td-social-sharing-buttons {
height: 55px;
min-width: 70px;
padding-top:16px;
font-size: 15px;
}
.td-social-pinterest .td-icon-pinterest {
font-size: 24px;
}
.td-social-google .td-icon-googleplus {
font-size: 24px;
}
Result: http://screencast.com/t/B85XCRgh
Also, please try the code below for social media sharing boxes below the content
.td-post-sharing-bottom .td-social-sharing-buttons {
height:60px;
min-width:60px;
padding-top:20px;
font-size:15px;
}
.td-social-google .td-icon-googleplus {
font-size: 20px;
}
.td-post-sharing-bottom .td-social-google i {
left: 4px;
}
.td-social-pinterest .td-icon-pinterest {
font-size: 20px;
left:2px;
}
Result: http://screencast.com/t/LEIWll9Izn
Place the both code in Theme panel->Custom Css area!
I hope this helps and let us know how it goes!
Thank you!
Hi strawberrybase,
Please try the code below and fix the problem. Place the code in Custom Css area, in Theme Panel.
.td_block_slide .block-title > a {
width: 100%
}
The result you should see here: http://screencast.com/t/tZWdtIvIn
Also, if you want to have this style for another block, please replace this class .td_block_slide with the class block used, for example: td_block_6, or td_block_5, … etc.
I hope this helps and let us know how it goes!
Thank you!
Hi InfinitCode,
I’ve checked the Css Style on our theme and everything seems to works fine. I am not fully sure about what kind of Css Style you mean. Please provide more details about this problem so i can be able to provide a more accurate response. If you have a Custom Css style, there will not be applied on our version because they changed some classes. Here, you can see that contains our update: http://tagdiv.com/newspaper-6-6-update/ .
Thank you for your understanding!
Hi bluhub,
I’ve checked your site now and everything seems to works fine about your slider. Please provide more details about this because i do not saw the problem there and otherwise i can be able to provide a more accurate response.
For your second request, you can hide your pagination button of your News Sticker if you use the code below:
.td-trending-now-wrapper .td-next-prev-wrap {
display:none;
}
Place the code in Theme panel->Custom Css area, like this: http://screencast.com/t/HFtowNXBT and the result you should see here: http://screencast.com/t/uHlhxWdBfyW
If you want to display number of views on the block image, especially for block 8, it is necessary to make some modifications to show the views.
First of all, you need to know what kind of module is used in your block and this thing you can find here: http://screencast.com/t/urs7uFoNMC . After this, you have to add this code in get_views(); ?> td_module_7.php, like this: http://screencast.com/t/rGIUp8VWW .
On the second step, you have to copy the function get_views() from td_module_single_base.php in td_module.php like here: http://screencast.com/t/6pDj3N6S
Also, on the final step, you can use this CSS for a better alignment, add it in Theme Panel ->Custom CSS section, like this: http://screencast.com/t/agIXeDpeRn
.td_module_wrap .td-module-meta-info .td-post-views {
position: relative;
display: inline-block;
top: 2px;
margin-left: 14px;
color: #aaa;
}
.td_module_wrap .td-module-meta-info .td-post-views span {
margin-left: 5px;
}
Result: http://screencast.com/t/5mNoYgS9A7
I hope this helps and let us know how it goes!
Thank you!
Hi,
Unfortunately for the code i provided, it grabs all the categories. As i stated above: “your problem cannot be resolved by either methods as the css one is not dynamic and the php one pulls all categories to the block.
You will need custom work to get it exactly as you wish”
Please hire a freelancer to adjust the code in order to display only primary category.
Thank you!
Hello,
The code i provided is a css code and requires no alteration of the php code. You simply put the code in the theme panel->custom css box. Or if you already updated your theme to the latest version, it’s called the ‘custom code’ tab now: http://screencast.com/t/ParnmwE4N
Thank you!
Hi
The theme code was tested and optimized for best performance, we have a lot of clients and the theme works well on a large variety of hosts.
First please make sure that you use the recommended server configuration for Newsmag theme, you can check our documentation for more details: https://forum.tagdiv.com/newsmag-requirements-for-newsmag/
There are lots of factors that influence the site’s page-sped. I suggest you first try this without any other plugins active, leave just VC plugin active the check again.
To improve your server response time you can try to reduce the number of queries (fewer plugins, fewer blocks on page, reduce the elements which use ajax requests/pagination like mega menus/load more/infinite load), also consider using a cache plugin, we recommend the WP super cache plugin with the following configuration: https://forum.tagdiv.com/cache-plugin-install-and-configure/ To improve the loading speed look the mysql query cache: http://dev.mysql.com/doc/refman/5.1/en/query-cache.html we also use it on our demo.
Also you can use the speed booster to move the js and css at the bottom of the page, eliminate render-blocking, but not for all plugins. Check the System Status if the speed booster is active if you use other plugins than the tested ones. You can find some useful information regrading speed booster usage in this topic: https://forum.tagdiv.com/topic/speed-booster-questions/
Also you can read this guide, it may help – https://forum.tagdiv.com/how-to-make-the-site-faster/
Thanks!
Hi Lucian, the old post is not quite clear on the method, you mention css and I can’t tell if that is an additional fix for something else or for the date etc.
Could you please repost the exact code to remove the date and in what file please.
Also what about this method?
1. Using Code in Functions File
This can be considered as the aggressive version of removing date and time-stamp from your WordPress blog. It is very powerful and removes the function of every php code, that helps to generate date. Date displayed in the comments will also be completely removed.
/** Start of Remove Date TimeStamp from blog posts */
function remove_post_dates() {
add_filter('the_time', '__return_false');
add_filter('get_the_time', '__return_false');
add_filter('the_modified_time', '__return_false');
add_filter('get_the_modified_time', '__return_false');
add_filter('the_date', '__return_false');
add_filter('get_the_date', '__return_false');
add_filter('the_modified_date', '__return_false');
add_filter('get_the_modified_date', '__return_false');
add_filter('get_comment_date', '__return_false');
add_filter('get_comment_time', '__return_false');
}
add_action('loop_start', 'remove_post_dates');
/** End of Remove Date TimeStamp from blog posts */
Add this code to functions.php file in your theme and update it. Wait for Google Search Bots to crawl and index your blog posts. Date will be removed from meta description of search results.
—
I read this article How to Remove Date From Google Search Results
It’s a better idea to remove dates from last year content, and for all latest content (ex: 2013 posts), let the date remain intact.
Note: I don’t recommend hiding date, rather show last updated time.
This is getting confusing…. Many sites say don’t hide it, some say don’t delete it and leave space, google hates space…too confusing….
I guess I’ll leave it in, there’s a reason why it’s coded in, maybe i shouldn’t mess with it and hope google doesn’t punish bloggers for having a date in their snippet.
-
This reply was modified 10 years by
mboydnv.
I am receiving the same error, even after updating everything, uninstalling VC I am no longer able to upload new plugins
Could not copy file. js_composer/assets/css/lib/vc-entypo/fonts/vc_entypo.woff
and also…
Unpacking the package…
Could not create directory.
What should I do?
Hi,
after updating http://www.latinacorriere.it the following custom CSS is not working:
.td_block_13 .meta-info-container h3{
padding-left:20px
}
.td_module_14 .td-module-meta-info{
bottom: -50px;
}
I also tried to clear cache (WP Super Cache) but still not working.
Thank you for support,
Gianni
Help!
I just updated to the newest newspaper through the envato wordpress toolkit and the site has broken. It appears that possibly visual bakery is broken or css somehow?
Instead of graphics this is the code I see:
[td_slide_big limit=”4″ sort=”” category_id=”23″ category_ids=”” tag_slug=”” autors_id=”” installed_post_types=”” autoplay=”” offset=””]
[td_block2 category_id=”14″ limit=”4″ custom_title=”LATEST NEWS” ajax_pagination=”next_prev”][td_ad_box spot_id=”custom_ad_1″]
[td_block2 category_id=”3″ limit=”2″ custom_title=”FEATURED”]
[td_block4 category_ids=”18″ limit=”3″ header_color=”#2b2b2b” custom_title=”COCKPIT RECORDINGS” ajax_pagination=”next_prev”]
[td_block2 category_id=”17″ limit=”6″ header_color=”#82b440″ custom_title=”VIDEO” ajax_pagination=”next_prev”]
[td_ad_box][td_block8 category_id=”19″ limit=”3″ custom_title=”ESCAPE & EVADE! DOCUMENTS” show_child_cat=”all” ajax_pagination=”next_prev”]
Here is a screen shot
here is what it should look like 
I tried to disable and delete the latest visual bakery plugin but that didnt work and I am stuck with the oldest versio, 4.7.4 and somewhow cant find the newest, so if you can provide a link to that i would appreciate it.]
thank you!!!
Please help, this my site : http://www.gabega.com
On the home page is use visual composer page CSS, but i don’t know what is happen, the Thumbnails of the homepage is gone, not showed.
And also about the mega menu on homepage, mega menu function is not funtion. But if i click or choose one category or single post, the featured image that i set as a first image for my content is showed, and also, the mega menu is okay. Just in category page and single post. Not In home page,
Please help, why this happen, i have been tried to regenarate my thumbnails, but the thumbnails still not showing on my homepage.
thank’s so much, before
laeban
Hi
I’ve a big problem.
I updated the latest version (6.6) and CSS Styles don’t work.
I try to install the old folder “Newspaper” and it doesn’t work too.
What can I do ???
Thanks
Hi JFoulger,
Please try the code below and place it in Custom Css area: http://screencast.com/t/eWmnyaf1
.td-header-style-1 .td-header-sp-recs {
margin-top: 12px;
}
.td-header-style-1 .td-header-sp-logo {
margin-top:15px!important;
}
The result you should see here: http://screencast.com/t/pOREfvaUlGe
Hope this helps and let us know how it goes!
Thank you!
Hi jcarr99,
Please try the code below and place it in Theme panel->Custom Css area, like this: http://screencast.com/t/s0mTFxEVefe
@media(max-width: 768px) {
.td-social-facebook .td-icon-facebook, .td-social-twitter .td-icon-twitter{
float: left;
}
.td-social-but-text {
display: block!important;
}
}
The result you should see here: http://screencast.com/t/cIxwMDHaai5
Hope this helps!
Thank you!
Hello,
You can follow this topic here:
https://css-tricks.com/moving-to-https-on-wordpress/
http://www.wpbeginner.com/wp-tutorials/how-to-add-ssl-and-https-in-wordpress/
You can also deactivate all your plugins and check for errors again then reactivate them.
I hope this helps
Let us know how it goes
Hi
1. We don’t have any shortcodes for related articles sections.
2. If your featured images are smaller that the thumb you can try to use Thumbnail Upscale to enlarge thumbnails and Force Regenerate, as the WordPress will not enlarge them.
Another way would be via css:
.page .entry-thumb {
width: 100%;
height: 100%;
}
Thanks!
Hi there. Could you please provide some custom css that would reduce the space between my top menu and header. As you can see from my site: http://www.empiricalfitness.com the space above the header ad to the top menu is more than the space below the header ad to the main navigation menu.
I would like the same amount of spacing above and below the header ad to the menus.
Thanks in advance
Jin
Hi
The only way to display the indicated link on mobile is to add it as an item in main menu. To avoid duplications on desktop you can add this css in theme panel > custom code > custom css:
@media(min-width: 768px){
.td-header-wrap .td-header-menu-wrap .sf-menu > li:last-child {
display: none! important;
}
}
This css will work only if you add the link as last item of the main menu. If you chose a different position for it the selectors will change to something like this:
@media(min-width: 768px){
.td-header-wrap .td-header-menu-wrap .sf-menu > li:nth-child(x) {
display: none! important;
}
}
where x is the position of the item in menu.
Hope this help.
Thanks!
-
This reply was modified 10 years by
Andrei L..
Hello,
Unfortunately, at the moment the theme does not have an option to customize the mobile version. The desktop version is just adjusted to display correctly on mobile. Maybe in a future version we will be able to implement such options.
If you want to hide the sidebar on mobile you can if you use CSS to customize it. At the moment, on the mobile version the sidebar moves to the bottom of the content.
You can hide it by using this code:
@media (max-width:767px){
.td-main-sidebar{
display:none!important
}
}
This applies if the sidebar is a standard sidebar from the widgets area. If you create your sidebar in visual composer when creating a page and using column layout it will have to be targeted different.
I hope this helps.
Thanks.