- NewspaperFlex Block Builder and Flex Loop Builder
- NewspaperHow to use the Flex Blocks cache option
- NewspaperHow to edit modules for Flex Block X
- NewspaperHow to insert a block inside the content of a post
- NewspaperFlex Block Settings Guide
- NewspaperMeta Info on Modules and Blocks
- NewspaperTheme modules and blocks
- TutorialsDefault Block Settings Guide
- NewsmagBlock settings tutorial
- NewsmagCategory tag on modules/blocks
- NewspaperThumbnails – Fix strange looking images on blocks
- NewspaperBlock settings tutorial
- NewspaperCategory Tag on Modules/blocks
- ApiPractical example – How to add a new Block and Module
- Apitd_api_block::delete
- Apitd_api_block::update_key
- Apitd_api_block::update
- Apitd_api_block::add
- ApiAPI – Blocks – Introduction
- NewspaperWP Rocket and Newspaper Theme: Optimization Guide
Please see the link below for an example of a page that doesn’t show the semi-transparent background – it’s a white block around the body copy…
Hi, all.
I will email Lucian/Radu the example stuff.
But quick overview…. FB has their own generated code you can implement, which can be responsive and this method basically replaces their old defunct WP plugin for FB comments.
Example in action on IMDB news items:
http://www.imdb.com/news/ni59489163
But, basically you go here:
https://developers.facebook.com/docs/plugins/comments
You use the “configurator” to specify a website, and width such as “100%” for responsive divs.
Assuming your site is already setup for ‘apps’ in your FB developer/user account, you would on above page click the ‘get code’ and then it will ask you to assign to one of your sites (if more than one), and you have a block of code to use with a WP theme.
Block ONE, looks like this and would go after the body tag on POST template:
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.5&appId=XXXXXX";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
then block two would either replace the comments box includes file, or simply be pasted into the template for the post, after post loop, after author box
<div class="fb-comments" data-href="http://mydomain.zzz" data-width="100%" data-numposts="5"></div>
Only trick is when you do the form, then get code, it will say “item not public, make public on your app menu” then trick there is to put in email, namespace (sitename all lower case), domain for app. Then click to make public. Going back to the configurator doesn’t make a new app, you’re still making just the ONE app for your site you specify; you can’t make 2 accidentally!
the other admin not just want the theme so I had to re activate the old theme to solve the problem ..
Sending pictures in order what happens.
1 Tab with Slide
2 Tab active gallery , all right , put the block 8 as a test .
3- Tab Mail Art does not appear that the slide has .
Hello tagDiv,
That’s too bad 😉
If I use the Visual Composer – > RAW HTML:
<h4 class=”block-title”><span>LEZEN</span></h4>
Then i see this: http://www.screencast.com/t/NJd2aGTO52G
I can adjust the font color, but the background color does not.
Is it not possible to copy the CSS code and rename it?
Kind Regards,
Thies
Hello,
Have you tried disabling all plugins? This issue could come from there. The theme uses thumbnails for modules and blocks. Please make sure you have the thumbnail selected here for that particular thumbnail: http://screencast.com/t/9IZSyOxmdk
Then, afterwards, use the ‘force regenerate’ plugin in order to regenerate your thumbs.
If the problem is still there afterwards, please send us an email at contact@tagdiv.com and provide wp-admin so we can take a look at the issue. Please also include a link to this topic so we can identify you.
Thank you!
OK, this is the code i get from the generator:
[vc_btn title="SEND MY MY BOOK" style="custom" custom_background="#2b78ae" custom_text="#ffffff" size="lg" align="center" i_align="right" i_icon_fontawesome="fa fa-cloud-download" link="url:http%3A%2F%2Fprojectbebest.com%2F||target:%20_blank" button_block="true" add_icon="true"]
I would like to make this button:
• 200px in height
• have the elements with vertical alignment middle
Thanks
I problem is that in the HomePage Thumbnail Articles whatever Block the picture is not 100 % width .
I send a picture to see .
Hello,
The theme only creates thumbnails for the dimensions found in the theme panel->thumbs on modules and blocks: http://screencast.com/t/9UIOF8eyZjb
In this menu, please only tick the options you want for the thumbs that you use and then use the “force regenerate” plugin as it will delete all the other thumbnails and leave only the newly created ones.
I hope this helps.
Thank you!
Hello,
I want to hide posts with a specific category from my main news feed.
Ive setup the Block (14) on my main page, with a category ‘News’. But if i only tick the Press Releases category, the post is still showing up in the main news.
Site: goo.gl/JpdlRd
So…again: i dont want to show up the Press Releases posts in the Latest posts category.
Pls help, thank you.
Hi
To load a different banner for a specific page you can add a condition in the file corresponding with the header style used. For example if you’re using header style 7 the file that must bee edited is header-style-7.php and the code should look like here: http://screencast.com/t/ryRhn07c25
<?php
if (is_page(page-id)){
echo do_shortcode('[td_block_ad_box spot_id="custom_ad_1"]');
}
else{
locate_template('parts/header/ads.php', true);
}
?>
Replace the page-id with the numeric id of the page where you want to load a different ad. To get the page id follow this link: http://screencast.com/t/9V7zgx6WK
I used custom ad 1 in this example but you can use any of the custom ads, just update the number from shortcode. Ex: for custom ad 4 the shortcode will be [td_block_ad_box spot_id="custom_ad_4"]
If you want to hide the logo on a specific page just add this condition here: http://screencast.com/t/iT9p861gnJ
<?php
if(!is_page(page-id)){
locate_template('parts/header/logo.php', true);
}
?>
Let me know how it goes.
Thanks!
-
This reply was modified 10 years by
Andrei L..
Hello Navito,
I have checked your website and saw your inappropriate image slider. If you want to reduce the height slider please try the code below and add it int Theme panel->Custom CSS area, as a quick solution.
The code is ->
.td_block_slide .td-icon-left, .td_block_slide .td-icon-right {
margin-top: -130px;
}
.iosSlider-col-3 .td_module_slide {
height: 450px;
}
Please notice that our theme does not enlarge the image but only crop this. If you don’t have the possibility to upload large images you could use a combination of plugins to upscale the thumbs – Thumbnail Upscale and Force Regenerate.
Hope this helps and let us know how it goes!
Thank you for the message!
Hello bcnjmlopez,
The whats-up button already exists on your theme but it appears only for the mobile version (feature available for 6.6 version or later -> http://screencast.com/t/XiG2Gx6Zeuqn). If you want to display for other devices, please try the code below and add it in Theme panel->Custom CSS area.
The code is ->
.td-social-whatsapp {
display: inline-block !important;
}
The result you should see here -> http://screencast.com/t/H3lbpNLYNQTV
For adding Linkedin button, please consult this topic and try to implement this for your side -> https://forum.tagdiv.com/topic/social-media-button/
Hope this helps!
Thank you for the message!
Hi
Please make sure that you didn’t set any offset in block’s settings where it suppose to show the most popular articles, also try to deactivate all plugins except Visual Composer, clear all caches and test again.
Let us know how it goes and if you still can’t manage to solve this provide wp-access so we can have a look and send us your wp admin credentials via email at contact@tagdiv.com and include a link to this tread into your message.
Thanks!
Hello,
I think you are referring to the ajax filter. this can be added or removed from block settings: http://screencast.com/t/mIzKyh3dB
The option can be found here: http://screencast.com/t/FmxfLOptLo
Thank you!
Sorry for the screenshot, you simply have to add the code in the module files corresponding to the blocks you want to have views: http://screencast.com/t/koCkDeey
Thanks.
Hello thies,
Unfortunately, what you want to achieve with the same style and functionality you cannot do this but only if you add the block because what you presented above is part of block settings with Ajax filter. Please provide more details about your desired changes. It is necessary to know more details about this so I will be able to provide a more accurate response.
For more information about blocks settings and Ajax filter, please consult our documentation here -> https://forum.tagdiv.com/block-settings-tutorial/
Thank you for the message!
Hi
The theme uses thumbs to reduce the page size and speed up page loading time. From each image uploaded are generated thumbs for each thumb size used by the theme. Basically when a post it’s displayed on the page in a block, the featured image displayed is not the one which you uploaded in media file, it’s a thumb cropped from the original image at precise dimension.
You can see where each thumb it’s used in theme panel > thumbs on module & blocks: http://screencast.com/t/6ny0JTMsR For example this thumb: 300 X 160 it’s used for modules 1,2 and blocks 3,4. If you’re nut using those modules or blocks on your site then this thumb can be deactivated. In order to those changes take effect you need to regenerate the thumbnails: https://forum.tagdiv.com/existing-content/
Hope this help.
Thanks!
Good evening.
I’m with some dificultadade , when I use the ” Tabs ” block, the tabs do not work. Click to change tab and nothing happens.
I think of all the active plugins…
Another thing … How can I put pictures of the homepage width 100 % without deform .
In the category pages is very good, the picture is a cut on the homepage but some are in very small vertical .
http://www.correiodoporto.com but the theme was not active because they do not want to work this
Hi All,
Wondering if anyone has suggestions about the best way to present a Gallery page with a lot of content? Currently using the approach of separating multiple categories within “Text with title” blocks and multiple slideshows within each. http://www.InMaricopa.com/photos and http://www.InMaricopa.com/photos-review
One issue for now is the general length of the page. Eventually when there are more categories and more galleries, it will be difficult to get users to scroll to the bottom. Any thoughts on how to organize, sort by date, etc.? Is there a way to create a simple “directory” or sub-menu of categories/galleries (maybe a drop-down) at the top of the page where users can review, select and the “jump” to a specific one?
Another issue is load time. That many images (thumbnails?) on a page seems to load pretty slow. Even on our high-speed connections, there is a period where the gallery thumbs are out of place until the bandwidth catches up and sorts them all out. We’re using WP Smush Pro but up for any suggestions for optimization.
Sorry if this isn’t the right place to reach out for advice/ideas on this. Nothing is broken, just hoping to get some feedback to better take advantage of a nice Newspaper feature.
Thanks!
On my main home page of my website, I’m using a block that’s supposed to show my five most-viewed posts on my website. While it’s mostly working correctly, for some reason it’s not registering the #1 most-viewed posts. So instead of “Popular” showing the posts that rank 1st, 2nd, 3rd, 4th and 5th in terms of views, it’s showing the 2nd, 3rd, 4th, 5th and 6th.
I can’t even fathom why this is happening. All of my little analytics widgets on my homepage recognize that the post that’s missing is the most-viewed post. In the block’s settings (I’m using “Big Grid 4” by the way) I have it set so that it should be referring to Jetpack’s statistics for my most-viewed posts. Until recently, this had been working fine and it had been showing the correct posts, but now the actual #1 most-viewed posts is missing. There’s a widget in my sidebar on my pages that is supposed to display my most-viewed posts and my actual most-viewed post is missing from there too.
Here is the actual post that’s not showing up in any of the blocks and widgets. I’ve been going crazy trying to get this to work. I’ve tried using Newsmag’s built-in option for displaying the most popular posts, but that never worked for me. The only options that had ever worked for me were most popular of all time (which I don’t want to use) and Jetpack’s option, which is the one I want to use.
Thanks for NewsPaper the awesome theme that decorates Owl Reporter but it got some bugs im reporting them here
Google has introduced new responsive link ads, they are being incorrectly parsed by newspaper theme
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- Responsive Link 1 -->
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-xxxx"
data-ad-slot="xxxx"
data-ad-format="link"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
Here is an example of responsive link ads, but they are being parsed as display ads its violating google adsense terms, its better to have an option to omit auto parsing of google ads
When adding a youtube featured video post (Post type 11) its unable to pre define a featured image its is being automatically downloaded how to skip it ? the default images with videos are not so good, that is why its better to use different featured images for video posts
Even if a featured image is set on publishing it is being automatically changed, the post have to be re edited to set the custom featured image

In post sharing official tweet button at last is unnecessary why have two tweet buttons? instead of it add google +1 button

How to pick the related posts ? Tag or Category ? Why Both (Category & Tag) Option Missing ?
Hello! When I have a block title for a block which is “All Categories”, there is no menu of categories travelling along the title line; but if I have a block which only shows certain categories, all the other categories show up as links along the line next to the title. I’d like to remove these throughout the site, can you please tell me how?
Thanks!
Hi libtetto!
Read this link: https://forum.tagdiv.com/topic/view-numbers-in-block/
Dear Support,
I have a question. See the attachment: http://www.screencast.com/t/SDjhGJ7l
You can see the yellow block with the word “Lezen” (reading in the Dutch ;)).
Now the description of the problem:
I want to make this without the use of a block or grid.
Below I want to place two blocks with the same style. But that’s not a problem.
How can i make this? With a background color and a font color?
Can you help me with this problem?
Failed to load resource: net::ERR_BLOCKED_BY_CLIENT
http://ghcristian.ro/wp-content/uploads/2016/01/big_ad_fashion.jpg Failed to load resource: the server responded with a status of 404 (Not Found)
Please see post http://ghcristian.ro/adn-ul-fanilor-din-sport/
How can I resolve this issue?