Hello,
The option can be disabled when you edit your page: http://screencast.com/t/RVgnKoMyhGv6
Option disabled: http://screencast.com/t/KzADKn0gGky7
Thank you!
Hello,
When using custom ads (non adsense), we recommend using this method: https://forum.tagdiv.com/using-other-ads/
Please use the div’s provided and place your ad code inside them.
Thank you!
Hello,
You can use the following CSS code to adjust the size and center position:
@media (min-width:1024px){
.mu_register{
width:900px;
}
}
@media (min-width: 768px) and (max-width: 1022px){
.mu_register{
width:700px;
}
}
If you want to adjust the social icons as well:
.apsl-login-networks{
width:410px;
margin-left:auto;
margin-right:auto;
}
.apsl-login-new-text{
text-align:center;
}
result: http://screencast.com/t/djnFV61gsL4
Thank you!
Hi,
We have not tested that particular plugin and cannot say for sure if it will work with our theme or not. You can try a few of them out and figure out which one works best.
(this one works: https://wordpress.org/plugins/qtranslate-x/)
Thanks.
-
This reply was modified 10 years by
Bogdan B..
Hello Andrei,
You can use this generator from feedly to create your button and link to your account: http://feedly.com/factory.html
Then, for the header icons you can place the generated code in the top-widget.php file like so: http://screencast.com/t/3mrx3E76 result: http://screencast.com/t/QTQUNthjHY3b
It will need a bit of css styling to get in line with the others. You can add a CSS class to the a link generated on the feedly site as an example:
<a class="feedly-top" href='http://cloud.feedly.com/#subscription%2Ffeed%2Fhttp%3A%2F%2Fmyfeed' target='blank'><img id='feedlyFollow' src='http://s3.feedly.com/img/follows/feedly-follow-circle-flat-white_2x.png' alt='follow us in feedly' width='28' height='28'></a>
Then you can style it with css using the ‘feedly-top’ class.
For the bottom widget you will have to use the code in td_footer_extra_bottom.php like so: http://screencast.com/t/7HIBb5yxoaul
Keep in mind that you may have to change all the quote symbols to match the php syntax. A text editor line notepad++ will warn you on this.
Then you can also style it with css to position it.
I hope this helps
Thanks.
Hello,
1) The top menu containing the login widget is hiden on the mobile version. It was a design choice and it can be forced to appear using custom css:
@media (max-width: 767px){
.td-header-top-menu-full {
display: block !important;
}
.td-header-sp-top-menu {
display: block!important;
}
.menu-top-container {
display: none !important;
}
.td-header-sp-top-widget {
display: none !important;
}
}
Just add the code in the theme panel->custom css box.
2) and 3) please provide more details to your problems. Be more descriptive and provide a link to your website so we can inspect the problems and come up with a solution.
Thank you!
Hello Arafat,
The easiest way to achieve this is by using a plugin. Something like: https://wordpress.org/plugins/last-updated/screenshots/
We have not tested these plugins. Some of them might not work with our theme. Try a few of them out and see how they work.
The alternative involves coding:
Use this line:
<?php echo the_modified_date('l, F j, Y', '<div class="the-modified-date">LAST MODIFIED: ','</div>'); ?>
And add it to the loop-single file corresponding to your post template: http://screencast.com/t/35I4CepLEU and replace the get_date code with the one above: http://screencast.com/t/THPFMM9E
Result: http://screencast.com/t/hRATUXtT
You can read more about it here: http://wpcrux.com/wordpress-last-modified-date/
Thank you!
-
This reply was modified 10 years by
Bogdan B..
Hello Stefan,
At the time we created our theme and used version 4.6.2 of visual composer, nobody knew the security issues with that version. Unfortunately the new version of visual composer creates problems with version 4 of our theme. We will try to implement an option for it in the near future but we cannot promise anything. In these cases we usually recommend a theme update. Unfortunately as newspaper 6 is a whole different theme it will create a few problems along the way, but we tried to maintain compatibility as much as we could. If you decide to update, please follow this guide to update your theme: https://forum.tagdiv.com/how-to-update-the-theme-2/ – https://forum.tagdiv.com/how-to-update-visual-composer-plugin/
Sorry for the inconvenience
Thank you!
Hello,
You have to be careful with css as it is a very specific language, so a code that will work on one header style will not work on another. We generally use the browser inspector (chrome) and an extension called live css editor when creating the code. It helps a lot!
I have checked your site and it seems that your modifications apply.: http://screencast.com/t/fuMVmyU2S – http://screencast.com/t/QQ73ujGNyDQx
Thank you!
Hello Hugo,
Thank you for your kind words. I have checked this error and it seems to be related to this error in your console: http://screencast.com/t/eEkz32LALx
Please try to disable all your plugins except visual composer and check the issue again. It is most likely a conflicting plugin.
Let us know how it goes.
Thanks.
Hello,
I have checked your website and saw that you used the post style 5 template (recommended http://screencast.com/t/HIe9hf9fwM7G). The smart list seems to display fine.
You have a few errors in your console which seem to be plugin related: http://screencast.com/t/AMTspZQmY
You might want to check those out as well.
Best of luck!
Bogdan
Hello,
You can achieve this by using a bit of custom CSS:
.td-social-but-text{
display:none!important;
}
Just add it in the theme panel->custom CSS box.
result: http://screencast.com/t/kPronW3xlvn1
Thank you!
Hi,
I have checked your website and it does not use our theme. The information facebook pulls is not controlled by the theme, but you can use SEO Yoast to control it.
As for the smart-list, you can select a post template that does not use the featured image: http://screencast.com/t/S1mhNWErXD
Or hide featured image on existing post templates with css. For example this code hides featured images on the default post template:
.td-post-template-default .td-post-featured-image{
display:none;
}
I hope this helps!
Thank you!
Hello Lucas,
Please make sure you installed the theme correctly and that the file wp-content/themes/Newspaper/includes/block_templates/td_block_template_1.php exists. If not, try to reinstall the theme following this tutorial: https://forum.tagdiv.com/install-via-ftp/
Let us know how it goes!
Hello Kerem,
Unfortunately there is no option for this and creating one will require custom work which we cannot provide at the moment. If you know your way around PHP you can edit these 2 files:
newspaper->includes->shortcodes->td_block_authors.php and newspaper->parts->page-authors-box.php
If not maybe you can find a plugin for the author box that adds more information.http://www.shoutmeloud.com/author-box-wordpress-plugin.html
We have not tested these plugins so we cannot make a recommendation. You will have to try them out and see how they work.
I hope this helps.
Thank You!
Hi,
You can also try it without any plugins and clear cache. Disable all of them except visual composer and check your image again. Maybe it is a plugin you installed since the last use.
Please make sure you have installed the theme properly, if you can re-install it via FTP(make sure you use the latest version 6.5.1) – https://forum.tagdiv.com/install-via-ftp/ maybe it was an error when you install it. I did not managed to replicate this on my side.
If the issue persist please send an email at contact@tagdiv.com and provide wp-admin access so we can take a look, also paste a link to this topic so we can know who you are and what your issue is.
Thanks!
Hello Rob,
You can edit your post or page in the text mode: http://screencast.com/t/EqKwxXgS3N and you will see these symbols:  . That is the white space: http://www.htmlbasictutor.ca/non-breaking-space.htm
Or you could use the classic HTML tag: </br> instead.
I hope this helps.
Thank you!
-
This reply was modified 10 years by
Bogdan B..
Hi,
As an alternative you could edit these blocks with css to align them, but it would result in too much white space on the module that has just one row of title text:
example:
.td_module_5.td_module_wrap .entry-title{
min-height:75px
}
result: http://screencast.com/t/VLmxCQMKYn4z – images align but title gets white space below to align to the other title that is significantly longer.
This is the problem with using blocks with text above the image. When the text is below the image, images do not get affected by title lengths.
I hope this helps.
Thank you!
Hi,
Please try to disable the SEO plugin and search for the schema section in the page source again. You will see that it will be gone.
This is the complete list of files that contain any at all schema information in the theme: http://screencast.com/t/DRb0HbsfraW
Thank you!
Hi,
I assume you are talking about the margins of different containers on your homepage. You can edit these out with the browser inspector: http://screencast.com/t/DdqD2nbNAn – http://screencast.com/t/dTVLBD4p and then use the code in the theme panel->custom CSS
Unfortunately there is no general white space removal code.
Thank you!
Hello,
You should not be embarrassed to hire a freelancer for this job, because some of them are actually looking for small projects like this. Either they are beginners at freelancing or simply prefer smaller tasks due to lack of time for big projects. There are many sites which provide freelance work and the prices will not be very high for a task like this. Unfortunately we cannot provide custom work because we are a small team and time does not allow us to tackle such tasks. Sorry!
As for the masonry grid, it can only be used on pages as a block not on category pages as a module.
Thank you!
Hello,
We need to be able to access your site so we can inspect the white space and see which one needs to be removed.
Let us know when we can access your website.
Thanks.
Hello Alessio,
The first thing you can do is check and see if the requirements in the theme panel->system status are met: http://screencast.com/t/pq6z32MjBz
If this is not the case, you can try a WP default theme so we can further narrow down the possibilities and see if the problem comes from WP or the theme.
Let us know how it goes!
Thanks.
Hello,
For posts you will have to identify the post style used and add the code in the corresponding php file: http://screencast.com/t/ht8ZL2VPOD and add the code inside the main content wrapper: http://screencast.com/t/vqpXnBSGR
Thanks.