- 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
- NewsmagtagDiv Composer Tutorial
- TutorialsFrom WPBakery to tagDiv Composer
- NewspapertagDiv Composer Tutorial
- NewspaperTheme modules and blocks
- TutorialsDefault Block Settings Guide
- NewspaperThe Mobile Theme
- NewspaperCompare theme files – Winmerge tutorial
- NewsmagBlock settings tutorial
- NewsmagLogo & Favicon
- NewsmagFooter templates
I managed to around this issue with CSS but this is just a patch.
please, do you have any idea ?
I’m actually not using the speed booster plugin anymore myself; I’m now doing this
Switch from VC to TD Composer beta, and:
a) Scripts to Footer plugin
b) generate and insert critical CSS in header.php
c) de-enqueue main style.css in functions.php
d) manually add link to minified style.css in footer.php
In my case this works very well; especially with fast server, all other optimizations, and with mod_pagspeed running very quick (it’s off right now as bug in last release for our server, waiting for next stable version any day now …)
I will do a tutorial on this at some point …
-
This reply was modified 9 years by
simchris.
Hello,
I noticed there is a setting to disable the article title under the Breadcrumbs section, however this only seems to cover posts and not pages.
Is there a way to hide them for pages somewhere in the theme settings, or do you need to hide it with CSS?
Thanks
The id’s that i get on my dashboard doesn’t match with the id’s on my pagespeed insights results render blocking jss/css.. My website name is http://www.meyvntech.com
Note: I am using tagdiv speed booster plugin.
So … i’m trying to add a function that forces the user to use Categories, so I’ve got this:
function force_post_categ_init()
{
wp_enqueue_script('jquery');
}
function force_post_categ()
{
echo "<script type='text/javascript'>\n";
echo "
jQuery('#publish').click(function()
{
var cats = jQuery('[id^=\"taxonomy\"]')
.find('.selectit')
.find('input');
category_selected=false;
for (counter=0; counter<cats.length; counter++)
{
if (cats.get(counter).checked==true)
{
category_selected=true;
break;
}
}
if(category_selected==false)
{
alert('You have not selected any category for the post. Please select post category.');
setTimeout(\"jQuery('#ajax-loading').css('visibility', 'hidden');\", 100);
jQuery('[id^=\"taxonomy\"]').find('.tabs-panel').css('background', '#F96');
setTimeout(\"jQuery('#publish').removeClass('button-primary-disabled');\", 100);
return false;
}
});
";
echo "</script>\n";
}
add_action('admin_init', 'force_post_categ_init');
add_action('edit_form_advanced', 'force_post_categ');
but I need specific categories selected … like a region and a content related category.
Any ideas?
Hi Catalln,
I just tried your CSS and it worked but having no text makes it look little ugly. Have a look here: https://i.imgur.com/Po1MO3N.jpg
Is there any way to add a simple text like Facebook , Twitter, Instagram and Youtube at the available place after the social icons? I mean right at the place where previously it used to show “100 Fans, 48 Followers, 98 Subscribers etc.
If it can be done. I won’t have to wait for the next update. Please try if it’s possible. I know it’s a pure customisation but it will make the social counter future proof.
Thank you.
Hey!
I’ll post updated version once I finish the tweak of doom! Have been messing with the new TD Composer beta, so got sidetracked, as I wanted to leave VC behind entirely from “now” onward.
I will actually update and add the #comments on what couple of the things actually do. And I’ll include my AMP footer injection code, too!
Actually the trick with the stupid render blocking thing is three step
a) generate ‘critical CSS’ for your post page; insert this into the header.php right before </head>
b) in functions.php – “de-enqueue” the main style.css from being generated and placed in the head.
c) put link to the main style.css file in the footer.php file.
d) if you don’t want to use functions.php to move the other .js stuff; use the “Scripts to Footer” WP plugin.
THAT is the super secret way we do it for my SEO service here (not a sales pitch). What this does is load the important CSS “above the fold” inline, then page loads on mobile (and I have 98 MPS score to prove it; the last gotcha is the CSS for stupid ‘tap targets’ — ugh) without waiting for anything, then main CSS loaded at end.
This simply works. If you have weirdo plugins injecting css and js in the head, you’ll have to de-enqueue them and move to footer.php manually. But the speed rating improvement is insane as there is literally *no* “render blocking” of any kind for Google on mobile or desktop. Period.
I was writing an ebook on all of this but personal life intruded so that didn’t happen.
-
This reply was modified 9 years by
simchris.
Hi Andrel,
It worked partially. I mean now I am able to see the image caption link under the image but it doesn’t support any customisation that we had done with it. I mean , I have changed the font, styling and size etc for the caption using theme optional as well as some CSS codes but these are not valid here with JPEG. On contrast, everything is working fully fine with .GIFs that are added using external link.
To understand better , Have a look at these two images
1. the JPEG image with image caption that appears without any customizations : https://i.imgur.com/MFKzuCB.jpg
2. the GIFs image with image caption that appears with all customizations: https://i.imgur.com/YC3FXFY.jpg
Another big issue with this image captioned JPEG image is the whole image is clickable. I mean if someone clicks the image , it will open the image source link in a new tab. While the default property should be that only by clicking the Image source link text ( here the word “Source” ) should be clickable , not the whole image. I hope that you are understanding what I am saying.
Kindly see if you can provide some temporary fix for these issues and be sure to cover all these things in the next update.
One more thing- For “Smart List Style-1 ” as per the previous comment by Bogdan, the images are by default set to left aligned. I think it must be “CENTER ALIGNED” to look better on the screen based on “STYLING” of this listing. You can notice that “smart list style-1” and “smart list style-7” is appearance wise same but the “style-1” is ajax based while “style-7” is normal. But “style-7” has images aligned in the centre by default.
So, please make the alignment of style-1 images in the center too in the next update and do provide me any temporary solution for it.
I really need this because for users point of view, Style-1 is very fast and responsive and I really want to use quite often for my smart list posts, but due to this ugly left aligned images, it looks bad. I hope you must be agreeing with me on this.
Thank you for understanding
okay, fixed the plugin aspect..
Kindly provide the css code, thanks
Hi,
After updating theme to 3.1, the plugin list no longer shows up. It loads and brings up a blank page..
Also, can i get the css to remove the posts borders on the left and right.. What worked in the previous version doesn’t work with this version.
Hi Catalin,
Can you please explain how and what i need to do.. is ther custom CSS i need.. if so what?
I just like the Slider .. logo and menu to have same concept as http://webknowledgy.com.au/ if you know what i mean..
Just dont know exactly how to implement this.. please help
Hello msaydati,
I have checked your website and I saw that you are using the RTL mode for the theme. Please keep in mind that the theme has no RTL support because it has been designed to be used in this layout, sorry!
Unfortunately, we have no plan on implementing it in the near future. Implementing RTL support in our theme will require 2 style.css files and it will add significant “weight” to the theme. Using the RTL mode means that lots of elements have to be adjusted and this thing involves custom work and we cannot provide this at the moment!
Please try to do a simple search of our forum and you will see that our team offers support only for theme related problems and which not require additional customizations. Please check again our support policy here -> https://forum.tagdiv.com/support-policy-2/
Thanks for your understanding!
Instead of doing CSS hack, can you please add option to turn off fetching fan numbers and to avoid displaying them completely? Thanks.
Hello nano2408,
The most simple way in this regard is to install the demo without content as you can remark in our documentation if you will read it, here -> https://forum.tagdiv.com/installing-demos/ Please notice that each demo has an own design, an own CSS code which gets the style. If you do not want to use this method, please notice that you will have to inspect it closer all the demo files and you will have to adjust it in your backend in order to achieve the same layout -> http://screencast.com/t/SfrM0Kc09u. All of these changes involve custom work and we cannot provide this services at the moment, sorry!
Thanks for your understanding!
Hello,
The answer uis yes for your first 2 questions. Speedbooster only has that list of compatible plugins and in the system status it will show the first incompatible plugin it detects as it only takes 1 to deactivate the plugin. it will detect the first one ad not detect the others as it deactivates itself.
We have not tested ‘white listing’ any plugins from the code. if you add plugins to the list you might as well remove the detect function and be done with it. You must simply remove the highlighted part and the function will not be there anymore. However speedbooster was only tested with the compatible plugins. We cannot guarantee it will work with any other plugins. It will be a trial and error situation if you plan on using it with all your plugins. For some it may work an move the css and js but for other it could not. Some pl;ugins actually require the css and js to stay at the top and not moved to footer. There are quite a bunch of situations you can face. that is why we added the compatibility in the first place.
this is the cause of your issues with the YTSubscribe and Facebook Login JS/CSS. Speedbooster probably cannot manage to find their id;s or to move them to footer. If speedbooster cannot do this you can try another such tool as our plugin is not the only one that can move js and css to footer.
You can try some of these alternatives as well:
I hope this helps.
Hello,
Different themes have a different style added for the heading tags. In our case the heading 5 simply adds a slightly bigger dont size. It increases from 15 to 17 pixels. If you want to change this implementation you can edit the size fort heading 5 from the fonts section of the theme: http://screencast.com/t/dcmct1q0
This will only affect the front-end though. The backend can only be edited from the editor-style.css file here:
http://screencast.com/t/yqu2QQL50J
You can add maybe a font-weight:bold; to it in order to make it bold or increase the font as this file will only affect the back-end. They are 2 separate stylessheets so 2 separate elements.
Thank you!
Hello nano,
You can try to use the below CSS to hide the social info.
The code is ->
.td_social_info{
display:none!important;
}
Thanks.
Hello msaydati,
Our theme has no RTL support because it has been designed to be used in this layout, sorry!
Unfortunately, we have no plan on implementing it in the near future. Implementing RTL support in our theme will require 2 style.css files and it will add significant “weight” to the theme. Using the RTL mode means that lots of elements have to be adjusted and this thing involves custom work and we cannot provide this at the moment!
Thanks for the message!
HI
1. You’re using V 7.1.1 of Newspaper theme and the option I’ve indicated it’s available only since 7.3 Try to update the theme following our documetation: https://forum.tagdiv.com/how-to-update-the-theme-2/ then test again.
3. Try this css in theme panel > custom cod > custom css: http://screencast.com/t/kj2MrhQ0T
.td-header-style-2 .td-header-sp-logo{
margin: 24px 0px 0 0px;
}
.td-header-style-2 .td-header-sp-logo img{
margin-left: 0;
margin-right: 0;
width: 300px;
}
5. Try this css: http://screencast.com/t/dIQSRWDpJH8n
a{
text-decoration: underline;
}
6. I can’t find the rss widget on your site, please provide a link pointing the page where I can see the widget and maybe I can help.
Thanks!
Hello fox,
If you want to have that design, please notice that you will have to use the Block 9 or 10 as you can see here -> http://demo.tagdiv.com/newspaper/block-9/ and also, you must use a bit of CSS code to hide the margin and padding bottom and the author name and date.
The code is ->
.td_module_8 .td-module-meta-info{
display:none;
}
.td_module_8{
padding-bottom:0;
margin-bottom: 0;
}
The result you should see here -> http://screencast.com/t/tbeaUISJCg
Thanks.
Hi
Try this css in theme panel > custom code > custom css: http://screencast.com/t/ZHyv8BPly
.td-header-sp-rec .td-header-ad-wrap {
height: 255px;
}
Let me know how it goes.
Thanks!
Hi,
That is not an error but a simple warning. every time you use !important in your css code this warning will show up, but it can be ignored as it warns us not to use !important unless it;s absolutely necessary. you can remove the !important tag if you want and check if the code works without it. We usually add it as css needs to re-write the previous code and sometimes it cannot without !important so we add it in. Try it like so and if it works the error will be gone. If it does not, then simply ignore the message:
.td-grid-style-4 .entry-title{
background-color: rgba(0, 102, 153, 0.7);
}
Thank you!
Hello Irreverent Gent,
Please notice that the parallax/responsive effect can be made only using the Visual Composer and that effect it can be maintained only for the stretch row on the full image and not for another image, sorry! If you want to achieve similar parallax effect using the CSS, please try to search some online solutions in this regard or you can read the following topic because there you will find some steps about you can achieve this -> http://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_parallax and could useful for you.
Thanks for your understanding!
Hi
To achieve the desired result you will need some customization in theme’s coder files. Basically you need to edit the module used to display that post and add a condition there: http://screencast.com/t/MllfhVoon
if (in_category('cat1') and (in_category('cat2'))){
echo "breaking new banner goes here";
}
Note that you may need additional css customization for banner’s layout.
Thanks!
Hello srampia,
Please try the code below and place it in Theme panel->Custom CSS Area.
.td-excerpt{
margin-top: 0;
}
.td_module_wrap .entry-title{
margin-bottom:0;
}
The result -> http://screencast.com/t/DV1ZuwBSbJV8
Thanks.