Home User profile
tagDiv Member
This user did not write anything. So we are just showing here some random text to make the profile page look nice :)
SteveWA
tagDiv Member

Same here.
My TagDiv cloud library plugin keeps getting disabled.

I get the message:
The following plugins were disabled because they are incompatible with this version of Newspaper: tagDiv Cloud Library

SteveWA
tagDiv Member

After all that, the site had the Brizy plugin installed.
I deactivated it, and this problem may have gone away!

SteveWA
tagDiv Member

I would add that I don’t get the problem in the 404 template. Changing its type doesn’t erase it from the Cloud Templates list, like it does for the Page Templates.

So something in how you are processing the template (and template list) for Pages is different.

SteveWA
tagDiv Member

Zone: 1
-Row
–Column 1
—Header
—Header Logo
–Column 2
—Single Image
-Row
–Column
—Inner Row

SteveWA
tagDiv Member

I hope you can include support for Auto Load Next Post in the Newspaper theme.

The author (@sebd86 on Twitter) told me he tried to contact TagDiv and didn’t receive a response. He wants his plugin to support your theme.

It’s an important feature, and I hope it can happen.

SteveWA
tagDiv Member

Problem solved. The soundcloud shortcode apparently relies on JetPack, which we had turned off.

SteveWA
tagDiv Member

I’m not sure I understood your answer.

In the end I modified: /include/shortcodes/td_block_trending_now.php

`
$brieflink='News Briefs';
$buffy .= '<div class="td-trending-now-title">' . __td($brieflink, TD_THEME_NAME) . '</div><div class="td-trending-now-display-area">';

I was also able to change the title there too.

And in the CSS I added:


.td-trending-now-title a{
color:white;
}

And that did the trick.

The CSS is loading late though, I have to see what that’s about.

  • This reply was modified 9 years by SteveWA.
SteveWA
tagDiv Member

Wonderful. I got it to work:


if( is_front_page() ) { //only check taxonomy on frontpage

//init the array
$wp_query_args = array(
'ignore_sticky_posts' => 1,
'post_status' => 'publish',

// added this to only include posts with images in Blocks
// 'key' => '_thumbnail_id', // Not Working - probably because of the filler image

// added the below for Special Taxonomy Inclusion in Blocks
'tax_query' => array(
array(
'taxonomy' => 'editorial',
'field' => 'slug',
'terms' => 'home-page-article',
),
),

// End Special Taxonomy

);

} // end if-frontpage

else { //don't check if not frontpage

//init the array
$wp_query_args = array(
'ignore_sticky_posts' => 1,
'post_status' => 'publish',
);

} // if-!frontpage

Viewing 8 posts - 1 through 8 (of 8 total)