- NewsmagtagDiv Composer Tutorial
- NewsmagBlock settings tutorial
- NewsmagLogo & Favicon
- NewsmagFooter templates
- NewsmagUsing other ads
- NewsmagUsing Typekit fonts
Hi,
I believe the plugin treats that page in the menu as a normal page, and inserts itself in it. Maybe the plugin has some exclusion settings to prevent it from displaying in certain pages.
I could give you a code to remove it from the menu, only in single post pages
– https://www.screencast.com/t/wusDkKsB
You could use the code if no setting is found within the plugin
.single .td-header-main-menu .menu-item-1558 .mailmunch-embedded,
.single .td-header-main-menu .menu-item-1558 p,
.single .td-header-main-menu .menu-item-1558 .td-mega-grid hr {
display: none!important;
}
Enter it in Theme panel->Custom CSS section if you decide to give it a try.
Thanks
You could do that with some CSS, like this example
– https://www.screencast.com/t/kftxN7C9lTf
Code used in example
.td-drop-down-search .td-module-thumb {
display: none;
}
.td-header-wrap .td-aj-search-results .item-details {
margin: 10px 20px 10px 20px!important;
}
The code will remove the thumbnail and position the post meta to occupy the remaining space.
Hi,
I will try to help you.
1 .So you want to increase the size of the text in the post content I believe, when using the mobile theme plugin.
The default font-size is 15px with a line height of 26px
– https://www.screencast.com/t/ylTxhhEnsA
Using the browser inspector this is not difficult to modify
– https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
So a code like this will affect all the paragraphs in the post content
– https://www.screencast.com/t/tLRvOAl0
Code used in example, modify the values as you want, then enter it in the mobile theme CSS section of the theme panel.
.td-post-content p {
font-size: 18px;
line-height: 29px;
}
2. The mobile theme only has a single module that it uses for the latest articles. This plugin does not have many settings and is kept as light as possible for performance factors. Having many settings and loading heavy resources would only make it slower.
The plugin is optional and intended to be used if the website owner wants to display a simpler and faster variant of the website on mobile, with no dependency on page builder content.
Thanks
Hi,
– SSL implementation has to be done by you, check with your hosting and online guides and solutions in the matter. These are some tutorials I found, please check them out
http://www.wpbeginner.com/wp-tutorials/how-to-add-ssl-and-https-in-wordpress/
https://css-tricks.com/moving-to-https-on-wordpress/
https://yoast.com/dev-blog/move-website-https-ssl/
https://forum.tagdiv.com/topic/moving-to-ssl/
From what I can see there are no mixed content issues, so the problem is elsewhere. I believe Google Chrome treats all http pages as not secure now
https://www.optimizepress.com/install-ssl-wordpress/
https://askwpgirl.com/how-to-install-ssl-certificate-wordpress/
Double check your SSL implementation and certificate, go over the required steps again. Maybe you missed something. Ask your hosting for assistance, they might have a service of their own for SSL or at least provide some information how you might achieve it.
– The theme will allow you to place ads, there are ad spots in the theme panel. You can use Adsense or different ads, depending on your preference.
There are article ads you can use in the post pages
https://forum.tagdiv.com/newsmag-article-ads/
In pages you can use the ad box element, place them in the page where needed. They will allow you to select from the custom ad spots in the theme panel
– https://www.screencast.com/t/dsjO0qvx5E
– That is a video playlist, edit the page with the tagDiv composer and click on the playlist element. In the composer sidebar you can then remove the default videos and add your own. Enter YouTube video IDs only
– https://forum.tagdiv.com/newsmag-video-playlist/
Hope this helps.
Thanks
I’m trying to add a background image to my front page behind Block 5. See the screenshot.
The problem is the image is really pixelated. I’m using an image that is 4000 pixels wide.
Other settings:
General Tab
Vertical Align: Top Setting
Row Stretch: Stretch Row and Content (but I’ve tried them all)
Extra Class: td-travel-header
CSS Tab
Background Style: Cover
Background Position: Center Center
H. Align: Center
Display: Show
All the other settings are default.
Extract all 3 files
functions.php
screenshot.png
style.css
from the Themeforest archive
/code/Newspaper-child/
to a folder
wp-content/themes/Newspaper-child/
on your hosting (server) with your wordpress-site
and activate the Child Newspaper Theme in admin-panel.
Try to clear you autoptimize cache and the wp super cache plugin cache (or cache for the plugin you use if not wp super cache) and see if it resolves the issue. Then debug your posts again as directed by Simion. I used the autoptimize plugin before and did not have issues with it, but I had disabled CSS and js minification for HTML. I now use fast velocity minify.
Hello Catalin,
Thank you for your reply.
1) Then if i make any update with child theme i will not lose any content or CSS right?
2) Because you did not have already Child Theme i create one with this plugin “Child Theme Configurator” is it ok? Is there any way to check if my child theme works correctly?
Thank you in advance!
Hi,
From what I can see the ads are not served by Google, there are some errors
– https://www.screencast.com/t/ixidHp5UBZzW
Did you make any modifications to the ad codes or applied CSS for them? remove those if you did.
What size are you using for the ads in the theme panel, auto or a specified value? Do they appear if you set a specified value?
Also try the troubleshooter – https://support.google.com/adsense/answer/1208336?hl=en
Try entering the ad code in a simple text element or widget in a page, see if it appears there.
Check some similar topics online as well
– https://stackoverflow.com/questions/33465168/google-adsense-error-tagerror-adsbygoogle-push-error-no-slot-size-for-avail
– https://webgilde.com/en/adsense-auto-resizing-error/
Many thanks.
How to disable the meta info? – only on a particular ios-slider? I persume I have to add some css in the block itself?
Many thanks!
Hi,
I made a quick test with that forum plugin, indeed there seem to be some br tags added randomly through the mobile forum page
– https://www.screencast.com/t/Ft2Lq7H6JD
You could try a simple code like this however
– https://www.screencast.com/t/kkVL5pqb
.wpforo br {
display: none;
}
CSS for mobile theme can be enetred here – https://www.screencast.com/t/71hxmWRO0Qp
Hello spexdj,
If you want to change the title of your posts displayed in modules, please try to use the code below and place it in Theme panel -> Custom CSS area.
.td-module-title a{
color:green!important;
}
The result is here -> https://www.screencast.com/t/KuYSJrvkadQw
Thanks.
Hello mjehangir,
Try to use the code below and place it in Theme panel -> custom CSS area.
.home .td-footer-wrapper .td_block_template_3{
display:none;
}
The result is here -> https://www.screencast.com/t/9Ul5xx236Bx
Thanks.
Hello spexdj,
Try to use the code below and place it in Theme panel -> Custom CSS Area.
.td-container-wrap {
background-color: transparent;
}
The result is here -> https://www.screencast.com/t/Q5FcwIubNa
Thanks.
Hello nikkib312,
Please notice that the speed of your website depends on how well your site is optimized.
-> https://developers.google.com/speed/pagespeed/insights/?hl=ro&url=http%3A%2F%2Fyesitreallyhappened.com%2F&tab=desktop
Notice that is not a simple task and if you do not have any experience in this regard you will do not bring good results for the theme. Also, notice that we have a speed optimization tutorial but this is addressed only to advanced users. So, if you follow the steps which are presented in this tutorial here -> https://forum.tagdiv.com/how-to-make-the-site-faster/ you can increase the page speed loading and if you are not aware of the steps in this regard, please consider hiring a freelancer/developer to help you because the speed optimization services are not covered by our support policy, as you can read here -> https://forum.tagdiv.com/support-policy-2/ Check our documentation here -> https://forum.tagdiv.com/requirements-for-newspaper/ regarding on dedicated server to fit our requirements.
Unfortunately, our theme does not have such an option to minify the style.css file and we cannot recommend any plugins with this functionality because is not tested with our theme. For minifying this file, we are using CloudFlare for our demo and works fine. If you want to read other views from our users, please check this topic -> https://forum.tagdiv.com/topic/tip-how-to-easily-minify-your-css-without-breaking-your-site/
Also, check all of your Ad Spots and if you have entered any suspicious code through them, remove all of them and check the results without them.
One of our top members here on the forum wrote his own optimization tutorial here:
https://forum.tagdiv.com/topic/tutorial-chriss-custom-optimizations-for-functions-php-etc/ and here -> https://www.infophilic.com/get-almost-100-pagespeed-newspaper-theme/
Basically, these are the theme requirements
– https://forum.tagdiv.com/requirements-for-newspaper/
Thanks for your understanding!
Hello NBak18,
Unfortunately, please notice that everything you want to involve doing such additional customization and we cannot provide something like this at the moment, sorry! If you want to affect the style of the Mobile Theme, all the code should have to be added into the Custom CSS area from Mobile Theme settings in the panel. Also, if you want to change some functionality, you should edit the theme core files. If you are not aware of the steps which are needed to take in this case, please consider hiring a freelancer/developer to help you. Basically, we recommend the developers from studio.envato.com.
Thanks for your understanding!
I have answer from mr Bogdan B on discussion themeforest item newsmag.
The icon can be changed if using font awesome but you need a custom css code to change it as there is no option in the theme panel to change this icon. Please open a new topic on our official support forum at https://forum.tagdiv.com/forum/newsmag/ and we can help with the code needed.
Thank you! Bogdan B
Hello,
If you want to increase the size of your Header Ad and Logo, you need to use such a custom CSS code. Below, I gave you an example of this case but only for Desktop. Notice that for the rest of the devices, it might be necessary to be adjusted.
.td-header-ad-wrap img{
margin-right: 0;
width: 500px!important;
}
.td-header-sp-rec{
width:500px;
}
.td-header-sp-logo{
width:400px;
}
.td-main-logo img{
width:400px;
}
The result is here -> https://www.screencast.com/t/hHLOv5Yd66qz
Thanks for your understanding!
Hi,
The breadcrumbs will show one level of parent-child category, there is no setting to change that at the moment. The same would be for the cloud single templates.
I am now aware of any plans to make modifications to the breadcrumbs. Sorry for the inconvenience.
I mobile the last element of the breadcrumbs is not shown, I could give you a code to make it appear, enter it in Theme panel->Custom CSS
– https://www.screencast.com/t/sOFVXiLycS
@media (max-width: 767px) {
.single-post .td-bred-no-url-last{
display: inline;
}}
Regarding that hidden category, where exactly is it still showing? That option will remove it’s tag from the single post pages and category pages. I see you don’t show any category tags in post pages for example.
Thanks
Hello whatawawu,
Try to use the code below and place it in Theme panel -> Custom CSS area.
@media(max-width:767px){
p{
text-align:justify;}
}
The result is here -> https://www.screencast.com/t/Kjq6Pmsgun
Thanks.
Hello devmdn,
1)Use the code below ->
.td-mobile-content li a {
font-size: 20px;
}
2)There’s an option for it in Theme panel -> Custom CSS area -> https://www.screencast.com/t/ggOQ4aJu7TO
If you want to change the Search Icon color, use the code below ->
.header-search-wrap .td-icon-search{
color:green;
}
Thanks for your understanding!
Hello wjs@diema.at,
You should use the code below and place it in Theme panel -> Custom CSS Area.
.td-header-ad-wrap img{
margin-right: 0;
}
The result is here -> https://www.screencast.com/t/voCj6I9HW3lt
Thanks for the message!
Hello,
Because there is no a Child Theme i tried to create one with this Plugin “Child Theme Configurator”.
In comments section in theme forest your collage told me that i do not need a child theme.
If i do not use the Child Theme and i use the Default i will have problem when i want update the Theme or i lose custom CSS?
Also if your theme need some changes in PHP how can i make without Child theme?
Thank you in advanced
I also tried to increase font size from style.css file, restarted apache… but nothing changed.
I then tried
html {
font-size: 18px;
}
to mobile theme css. It worked for a while, only in tablet, -some articles; not all- … but then I got again the standard font size.
I read in an article that maybe that’s because I’m not using a google font.
Any thoughts?
We installed video news demo without content, however, the top band of dark background didn’t show up on the featured blocks in the home page. We tried changing the background color of row css in the td composer that didn’t work. Any inline CSS or other files/configs to be changed as well ? Please advise how to get the dark backgound on the top of home page as we see in the post pages.