I’m having this same problem. How did you resolve the issue?
https://pacifictribune.com/2018/05/18/at-least-8-fatalities-reported-after-shooting-at-high-school-southeast-of-houston/
Still works just fine on my site: https://pacifictribune.com/2017/08/24/texas-house-map-must-redrawn-federal-court-says/
No, turns out I just hadn’t updated my child theme in a while.
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.
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.
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. =/
Worked for me too after clearing cache.
That didn’t fix it.
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.
Did you have any luck getting the author boxes to display for each co-author?
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.
-
This reply was modified 9 years by
soundstrat.
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.
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
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
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
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?
Is there any way to show the Post Settings box on custom post types?
Thanks!
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.
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;
}
Update: I resolved the issue with the sidebar title but the header ad seems to be having an issue with padding.
Please help,
Thanks!
Actually – it totally works! I just had to clear my site and browser cache a few times.
Thanks!
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;
}
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!
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/
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.