- 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
I have been trying to fix it but the problem is from theme. Your icon fonts are loading from non SSL ? How do i fix that ?
Mixed Content: The page at ‘https://creativetacos.com/wp-admin/options-general.php?page=redis-cache’ was loaded over HTTPS, but requested an insecure font ‘http://creativetacos.com//includes/wp_booster/wp-admin/images/font/tagDiv.ttf?m8e83u’. This request has been blocked; the content must be served over HTTPS.
options-general.php?page=redis-cache:1 Slow network is detected. See https://www.chromestatus.com/feature/5636954674692096 for more details. Fallback font will be used while loading: https://creativetacos.com/wp-content/themes/Newspaper/includes/wp_booster/wp-admin/images/font/tagDiv.woff?m8e83u
options-general.php?page=redis-cache:1 Mixed Content: The page at ‘https://creativetacos.com/wp-admin/options-general.php?page=redis-cache’ was loaded over HTTPS, but requested an insecure font ‘http://creativetacos.com//includes/wp_booster/wp-admin/images/font/tagDiv.woff?m8e83u’. This request has been blocked; the content must be served over HTTPS.
Hi there,
Enjoying Your Theme Work. It’s Great Really. Moreover, I have Facing a Problem with the Trending Now Block. It is not showing properly. I also post the screenshot of how it shows. Help me fix this.
Thanks 🙂
Screenshot Link: https://prntscr.com/jb4vm7
I am using block 8 in the footer 2 widget of my website, to display items with a certain tag. The widget works just fine, displaying properly on every page except the home page.
I believe this happened after the latest theme update (8.7.2).
Shot of widget on home page:
https://eewc.com/wp-content/uploads/2018/04/Block8IFooterHomePage.jpg
Shot of footer all ~2000 other pages:
https://eewc.com/wp-content/uploads/2018/04/Block8InFooterWorking.jpg
I am running latest version of WordPress and all plugins. I tried disabling all plugins and the problem still existed.
Like I said, this was not a problem until fairly recently.
Any ideas?
Thank you for any help you can offer.
Trying to edit the fonts for the Modules MX and the loader just spins and will not open. Every other section opens fine and able to edit. I’ve seen this question asked several times, going way back to 2016, but I don’t see any kind of reply. Please advise. Thank you.
For our site we have created an abc index for our posts.
We have a taxonomy built called “alphabetical_letter” which houses all the articles, which are on their own again divided into live-review, album-review and so forth.
We are now in the process of making seperate loop files/taxonomy files.
In our example we did this for the letter N for muziekrecensies category, so that this will display only all articles marked with the category muziek-recensies and the taxonomy alphabetical letter N, using the code further below.
The loop has been set for the first 30 posts, only strange thing is that after this the load more function from the theme kicks in, and displays all articles, not just the ones with the keyword N in the alphabetical letter taxonomy, but all the other ones from the category muziekrecensies.
Is there a way to solve this please ?
the page where this is happening can be seen here (posts currently set to -1 for reviewing reasons):
for the loop-albumrecensies.php
<?php
/**
* If you are looking for the loop that's handling the single post page (single.php), check out loop-single.php
**/
// $global_flag_to_hide_no_post_to_display - comes from page-category-big-grid.php and is a flag to hide the 'No posts to display' message if on category page there are between 1 and 5 posts
global $loop_module_id, $loop_sidebar_position, $global_flag_to_hide_no_post_to_display;
///if we are in wordpress loop; used by quotes in blocks to check if the blocks are displayed in blocks or in loop
td_global::$is_wordpress_loop = true;
$td_template_layout = new td_template_layout($loop_sidebar_position);
if (empty($loop_module_id)) { //not sure if we need a default here
$loop_module_id = 1;
}
$td_module_class = td_api_module::_helper_get_module_class_from_loop_id($loop_module_id);
//disable the grid for some of the modules
$td_module = td_api_module::get_by_id($td_module_class);
if ($td_module['uses_columns'] === false) {
$td_template_layout->disable_output();
}
$args = array(
'post_type' => 'post',
'posts_per_page' => '30',
'tax_query' => array(
'relation' => 'AND',
array(
'taxonomy' => 'alphabetical_letter',
'field' => 'term_id',
'terms' => array( '437' ), //this is by id
),
array(
'taxonomy' => 'category',
'field' => 'slug',
'terms' => array( 'muziek-recensies' ), //this is by slug
),
),
);
// The Query
query_posts( $args );
// The Loop
if (have_posts()) {
while ( have_posts() ) : the_post();
echo $td_template_layout->layout_open_element();
if (class_exists($td_module_class)) {
$td_mod = new $td_module_class($post);
echo $td_mod->render();
} else {
td_util::error(__FILE__, 'Missing module: ' . $td_module_class);
}
echo $td_template_layout->layout_close_element();
$td_template_layout->layout_next();
endwhile; //end loop
echo $td_template_layout->close_all_tags();
} else {
/**
* no posts to display. This function generates the __td('No posts to display').
* the text can be overwritten by the themplate using the global @see td_global::$custom_no_posts_message
*/
echo td_page_generator::no_posts();
}
this for the taxonomy-alphabetical_letter-n.php
<?php
/**
* the custom taxonomy template
* This file is loaded by WordPress on custom taxonomies. You can further customize this template
* for specific taxonomies by copying this file to taxonomy-yourTaxonomyName.php
*/
get_header();
global $loop_module_id, $loop_sidebar_position;
// get the current taxonomy object - note that it's note complete
$current_term_obj = get_queried_object();
//read the loop variables for this specific taxonomy
$loop_module_id = td_util::get_taxonomy_option($current_term_obj->taxonomy, 'tds_taxonomy_page_layout');
$loop_sidebar_position = td_util::get_taxonomy_option($current_term_obj->taxonomy, 'tds_taxonomy_sidebar_pos');
if (empty($loop_module_id)) {
$loop_module_id = 1; // module_1 is the default
}
// sidebar position used to align the breadcrumb on sidebar left + sidebar first on mobile issue
$td_sidebar_position = '';
if($loop_sidebar_position == 'sidebar_left') {
$td_sidebar_position = 'td-sidebar-left';
}
?>
<div class="td-main-content-wrap td-container-wrap">
<div class="td-container <?php echo $td_sidebar_position; ?>">
<div class="td-crumb-container">
<?php echo td_page_generator::get_taxonomy_breadcrumbs($current_term_obj); // get the breadcrumbs - /includes/wp_booster/td_page_generator.php ?>
</div>
<!-- content -->
<div class="td-pb-row">
<?php
switch ($loop_sidebar_position) {
default: //default: sidebar right
?>
<div class="td-pb-span8 td-main-content">
<div class="td-ss-main-content">
<div class="td-page-header">
<h1 class="entry-title td-page-title">
<span><?php echo $current_term_obj->name ?></span>
</h1>
</div>
<?php locate_template('loop-albumrecensies.php', true);?>
<?php echo td_page_generator::get_pagination(); ?>
</div>
</div>
<div class="td-pb-span4 td-main-sidebar">
<div class="td-ss-main-sidebar">
<?php get_sidebar(); ?>
</div>
</div>
<?php
break;
case 'sidebar_left':
?>
<div class="td-pb-span8 td-main-content <?php echo $td_sidebar_position ?>-content">
<div class="td-ss-main-content">
<div class="td-page-header">
<h1 class="entry-title td-page-title">
<span><?php echo $current_term_obj->name ?></span>
</h1>
</div>
<?php locate_template('loop-albumrecensies.php', true);?>
<?php echo td_page_generator::get_pagination(); ?>
</div>
</div>
<div class="td-pb-span4 td-main-sidebar">
<div class="td-ss-main-sidebar">
<?php get_sidebar(); ?>
</div>
</div>
<?php
break;
case 'no_sidebar':
?>
<div class="td-pb-span12 td-main-content">
<div class="td-ss-main-content">
<div class="td-page-header">
<h1 class="entry-title td-page-title">
<span><?php echo $current_term_obj->name ?></span>
</h1>
</div>
<?php locate_template('loop-albumrecensies.php', true);?>
<?php echo td_page_generator::get_pagination(); ?>
</div>
</div>
<?php
break;
}
?>
</div> <!-- /.td-pb-row -->
</div> <!-- /.td-container -->
</div> <!-- /.td-main-content-wrap -->
<?php
get_footer();
Not sure why, but the large picture on block 1 and 2 get blurry on my front page (www.nordsip.com)
When you click on the article, the featured picture is not blurry.
I’ve tried uploading both a .gif and a .jpg but it doesn’t make a difference.
Then I’ve regenerated the thumbnails a few times, and I’ve also activated retina. But none of it works. Can you help?
Thanks!
That fixed the problem – thank you! One more question – what code should I use if I want the block header to look like this instead? 
Thanks for your help!
Hi there,
I’ve created my website with one of you demos on localhost and then uploaded it to my real domain. Since then, I get an https error. Upon investigating, it is some asset on localhost but I don’t manage to find it. The css of the the asset in my pages is as follows:
.td-menu-background,
.td-search-background {
background-image: url(‘http://localhost/newspaper/wp-content/uploads/2018/03/1.jpg’);
}
.white-popup-block:before {
background-image: url(‘http://localhost/newspaper/wp-content/uploads/2018/03/2.jpg’);
}
Can you please advise me where I can delete/change it?
Thanks
Thank you Simion. You are right about affecting every instance. Is it possible to register a new block and new module and then copy the code from existing module and block on it and then modify that code?
Not asking for support for untested plugins. MailPoet is NOT turned on. I only turned off your newsletter because I don’t want to use it. That doesn’t solve the issue of your Instagram block, for example, breaking the site, or blocks with single names breaking the site… those are far bigger issues for me.
The modules of the theme can be found here
– https://www.screencast.com/t/pKRe3039
Blocks here – https://www.screencast.com/t/Um1ewPGmSR
Note that a modification to a module or block will affect every instance of it, unless maybe you create some conditions if possible.
The module and block files can be customized through a child theme
– https://forum.tagdiv.com/the-child-theme-support-tutorial/
Hi,
I see you are using module 16 for the search page results
– https://www.screencast.com/t/TFY7EaVCFMH
That module uses the WordPress thumbnail size set here
– https://www.screencast.com/t/Ix9iv9srO4C
If you modified that value, it will affect the thumbnail used by that module. Change the module to a different one or revert to default WordPress thumbnail size and regenerate the thumbnails
– https://forum.tagdiv.com/thumbnails-fix-strange-looking-images-on-blocks/
Thanks
Yes that might happen, the design for h2 may apply in those places once that modification is made. Maybe an option to choose the heading for each block will be implemented in the future.
At the moment only some multi-purpose elements have this option, such as the custom title element
– https://www.screencast.com/t/Nd4AKOkbSJq
I need this
1) smart sidebar + blocks + visual OR tagdiv composer
2) smart sidebar + working blocks (i remember to you blocks lose their style without columns or rows of a visual constructor).
Hello,
Please provide more details to what share block you are referring to.
Thanks.
Hey Catalin,
Thanks for you help… only the template supplied plugins (and WP web statistics) are turned on. I have the newsletter turned off as I will use MailPoet, which is also presently turned off, as is Yoast.
Caches cleared, everything else cleared.
Here’s a sample image…
http://exhaustnotes.com.au/brokesite.png
This is what I get when I use the wrong block, or have a single word title for the block…
Including a no in the article is not viable as a Publication might appear in more than one categories with different numbers, so its not possible unless and until we make one publication exists in one category only.
I understand this is not possible by default and need some modifition at core level.
The data which I am referring to is coming from NewsPaper theme’s Block 12. Can you please tell me where can I edit this module’s file? I am sure a php based “For-Each” Loop can be put just before the Post Title and will automatically increment by 1 after each post.
Thanks. I asked about the td file because I saw some people had asked before how to make the block headings h2. I tested it but it enlarged the font for the mega menu.
Hello,
Return the “Share” block, which was earlier in the past year. Now this block is loaded disgustingly, often it does not load at all.
If you see in this page i have smart sidebar (sticky function is what i want and what i need) however without VC columns and rows the blocks lose their style but if i add VC elements i can’t use the smart sidebar…
Some blocks break the site. For example, the Instagram block when saved, wipes out all the front page content below the main menu. Also, if any block has a single word title, like motoring for example, it causes the same breakage. It works if you change the category and block title to two words but if they are a single word.
Hello moose85,
I have made a test page on your website with tD COmposer and the block seems to be correctly added to your page, as you can see here -> https://www.screencast.com/t/rNeCJ97OE What’s the problem?
Thanks.
Hello Anshu Garg,
I have inspected your website and I saw that your header Ad works as expected, as you can see here -> https://www.screencast.com/t/lNeH52VV5MBy Disable the AdBlocker if you are using something like this, clear all the caches and check the results. If is not what you mean, provide more details about your problem so I will be able to provide a more accurate response.
Thanks.
Hi,
That is usually caused by insufficient resources, please check the theme panel system status section
– https://forum.tagdiv.com/requirements-for-newspaper/
If needed ask your hosting provider to increase all the parameters mentioned in that guide as specified. Then check if there is still a problem.
In other cases the admin ajax used by the theme could be blocked by a server firewall or security function, more in this topic
– https://forum.tagdiv.com/topic/cant-save-theme-options-2/
Thanks
