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 :)
soundstrat
tagDiv Member

No, turns out I just hadn’t updated my child theme in a while.

soundstrat
tagDiv Member

Ok, you know what… now I’m having other issues – I can’t see my post content. So I’m server rewinding until TagDiv gets this issue worked out.

soundstrat
tagDiv Member

Ok, so I have found the solution…

The functions.php file in the new Newspaper 6.3 is different than the one that was in 6.0

To resolve this issue, go to themes – editor in your dashboard, then replace the following code – making sure NOT to remove any other code. If you remove other code, you may lose custom functionalities that you’ve set in this functions file. Here’s the code:

<?php
/* ----------------------------------------------------------------------------
Newspaper 6 Child theme - Please do not use this child theme with older versions of Newspaper Theme

What can be overwritten via the child theme:
- everything from /parts folder
- all the loops (loop.php loop-single-1.php) etc

- the rest of the theme has to be modified via the theme api:
https://forum.tagdiv.com/the-theme-api/

*/

/* ----------------------------------------------------------------------------
add the parent style + style.css from this folder
*/
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles', 1000);
function theme_enqueue_styles() {
wp_enqueue_style('td-theme', get_template_directory_uri() . '/style.css', '', '6.1c', 'all' );
wp_enqueue_style('td-theme-child', get_stylesheet_directory_uri() . '/style.css', array('td-theme'), '6.1c', 'all' );

}

With this:
<?php
/* ----------------------------------------------------------------------------
Newspaper V6.3+ Child theme - Please do not use this child theme with older versions of Newspaper Theme

What can be overwritten via the child theme:
- everything from /parts folder
- all the loops (loop.php loop-single-1.php) etc
- please read the child theme documentation: https://forum.tagdiv.com/the-child-theme-support-tutorial/

- the rest of the theme has to be modified via the theme api:
https://forum.tagdiv.com/the-theme-api/

*/

/* ----------------------------------------------------------------------------
add the parent style + style.css from this folder
*/
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles', 1001);
function theme_enqueue_styles() {
wp_enqueue_style('td-theme', get_template_directory_uri() . '/style.css', '', TD_THEME_VERSION, 'all' );
wp_enqueue_style('td-theme-child', get_stylesheet_directory_uri() . '/style.css', array('td-theme'), TD_THEME_VERSION . 'c', 'all' );

}

This worked for me. Please update and let us know if it works for you.

soundstrat
tagDiv Member

I’m having the same issues and I’ve deactivated all of my plugins. I am on multisite.

This is definitely urgent as all of our sites are down. =/

soundstrat
tagDiv Member

Worked for me too after clearing cache.

soundstrat
tagDiv Member

That didn’t fix it.

soundstrat
tagDiv Member

If you are still trying to figure this out, use kpwebteam’s code on this page: https://forum.tagdiv.com/topic/co-authors-in-newspaper-6

Be sure to use the code that kpwebteam posted as it includes the necessary styling and allows for up to 4 co-authors.

soundstrat
tagDiv Member

Did you have any luck getting the author boxes to display for each co-author?

soundstrat
tagDiv Member

I agree with Julius. It seems to me that the theme should at least be compatible with the Co-Authors plugin. If you just added the if else statement and then point the else to the custom tagdiv get_author code in each template out of the box it should be reverse compatible and still work for those not using the plugin. Just a suggestion since this question seems to come up a lot – at least 2-3 times a month.

soundstrat
tagDiv Member

Nevermind, I figured it out. Apparently something changed with this in version 7.8 causing the excerpt to show back up where we had it turned off before the update. For others trying to fix this, it’s Module MX7 under Excerpts in the theme settings.

To turn it off, just put a 0 (zero) in where it says Excerpt Length.

soundstrat
tagDiv Member

I just tried that and it didn’t. =(

I also tried this:
.loop-single .td-post-header .td-post-title .td-post-author-name .td-module-meta-info .date { top: 1px; }
}

That didn’t work either. =(

-Brad

soundstrat
tagDiv Member

Hi Bogdan,

I tried that but it didn’t work. I also tried to target it with a div class like this:

.single .td-post-title .td-module-meta-info.date{ position:relative; top:2px; }
and like this
#date.single .td-post-title .td-module-meta-info{ position:relative; top:2px; }
and like this
.date.single .td-post-title .td-module-meta-info.date{ position:relative; top:2px; }

But none of those worked. =/ The domain is: http://pacifictribune.com

Any help is greatly appreciated!

Thank you so much,

-Brad

soundstrat
tagDiv Member

Thank you for the information provided above. Very Helpful! Can you please point to where we can fix the styling so that it aligns with the author name? See photo: http://imgur.com/a/6YlVB

soundstrat
tagDiv Member

It seems the files have changed since this was posted. Any way to do this in the latest version and is it possible to do it it in the child theme so it doesn’t get overwritten during future updates?

soundstrat
tagDiv Member

Is there any way to show the Post Settings box on custom post types?

Thanks!

soundstrat
tagDiv Member

Is there any way to make this work through the child theme so it doesn’t get overwritten when updates come along?

I’ve set up the correct directories as discused on the child theme page but it doesn’t seem to override the parent theme.

soundstrat
tagDiv Member

I’ve resolved the issue. There appears to be some bad css in the stylesheet.

To resolve the issue, add the following code to the custom css area of the theme panel:

.td-header-rec-wrap .td-adspot-title {
margin-bottom: 5px;
position: relative;
top: 5px;
}

soundstrat
tagDiv Member

Update: I resolved the issue with the sidebar title but the header ad seems to be having an issue with padding.

Please help,

Thanks!

soundstrat
tagDiv Member

Actually – it totally works! I just had to clear my site and browser cache a few times.

Thanks!

soundstrat
tagDiv Member

Thanks, but that code doesn’t seem to do anything about the padding above and below the logo.

I’m using this code to define the logo height:

.td-header-sp-logo img {
height: 75px;
width: auto;
}

soundstrat
tagDiv Member

It’s alright. I didn’t realize that Google has relaxed the requirement to label ads so I’ve solved my problem by removing all ad labels.

Thanks for getting back to be though!

soundstrat
tagDiv Member

Hello,

This works except for the inline side ad title text is in the center of the article. Any way to center it above the side ad? See here for more info: http://dev.pacifictribune.com/2016/07/05/extremely-careless-but-fbi-advises-no-charges-for-clintons-emails/

soundstrat
tagDiv Member

Hey everyone,

The social counter facebook id is case sensitive. If your facebook profile uses capital letters like fb.com/PacificTribune then you must capitalize the letters otherwise your likes will not show.

Viewing 25 posts - 1 through 25 (of 26 total)