Thanks very much for looking into this. For now I’ll try closing the article tag after the content and see if I have any luck.
Thanks for replying,
The problem I’m having is that I’m able to create a review but it includes elements of other posts. An example is at http://www.xposy.com/technology/ori-and-the-blind-forest-review I’ve managed to select the name using schema markup but the elements are still included when testing. It’s using post style 2. I think this is because article tags are included before the original one containing the schema markup is closed
Great to hear it’s working now 🙂 I also switched to this theme just last week and I’m loving the features it offers. Super fast compared to some I’ve had too.
Hey Lewis,
In your FTP, navigate to Newsmag > single_template_2.php
Download a copy of that file for backup
Under the line <?php echo $td_mod_single->get_date(false);?> add:
<?php echo get_the_time(); ?>
It’ll look a little something like this afterwards
<?php echo $td_mod_single->get_author();?>
<?php echo $td_mod_single->get_date(false);?>
<?php echo get_the_time(); ?>
<?php echo $td_mod_single->get_views();?>
<?php echo $td_mod_single->get_comments();?>
Reupload to the server, clear any cache plugins and it should be set
Scratch that! Apparently they don’t make use of that thumbnail.
I’ve tried this out on your site which seems to work. Add this to your Theme Panel > Custom CSS
.post_td_gallery .td-button{
background-size: 100% 100%!important;
}
Not sure if this will fix anything but it’s worth a shot. Have you got the 80×60 thumbsize enabled in Block Settings > Thumbs on modules & blocks? That size seems to be used by the gallery and is turned off by default. You’d have to regenerate thumbnails again after turning it on.
No problem 🙂 you may need to make that change again when the theme is updated but it’s a quick fix
Hey,
Try adding this to Theme Panel > Custom CSS:
.td-sp.td-sp-googleplus, .td-sp.td-sp-pinterest{
display:none;
}
Hey,
In your ftp navigate to your Newsmag parent theme > Parts > Header
Download logo.php as a backup
Edit logo.php with a text editor.
You’ll see anchor tags in both the //Retina and //Not retina code.
Change href=”<?php echo esc_url(home_url( ‘/’ )); ?>”
to
href=”http://www.newaddress.co.uk”
Change “http://www.newaddress.co.uk” to the URL you wish to link to. Clear any cache plugins you may be using afterwards.
You’ll need to do the same thing with logo-mobile.php
Also, I’m pretty sure the social bar at the bottom uses the class .td-icon-font
Try the following CSS, should make the icons show up
.td-icon-font{
color:#222222!important;
}
And to make the hover look nice
.td-icon-font:hover{
color:#ffffff!important;
}
To leave the mail icon as it is since it has no background
.td-icon-mail-1:hover{
color:#222222!important;
}
-
This reply was modified 11 years by
Sean. Reason: For hover appearance
Hey,
For the Categories widget try out
.td_block_popular_categories ul a{
color:#222222;
}
For the Even More News try
.td_block_wrap .td_block_inner .entry-title.td-module-title a{
color:#222222;
}
Hope that does the trick!
Hey,
For removing the filters try this Custom CSS in your Theme Panel
.td-module-thumb a:last-child:before{
background:transparent!important;
}
Changing the text color:
.td_module_wrap .meta-info .td-editor-date, .td_module_wrap .meta-info .td-module-title a, .td_module_wrap .meta-info .td-editor-date a{
color:#000000!important;
}
Adjust #000000 to your preference.
-
This reply was modified 11 years by
Sean. Reason: Noticed original changed comment text. New one should work
Haha, I found the area you were talking about, all nice and hidden now. Cheers Chris! 🙂
Sorted the top bar log-in section with a quick change to top-menu.php:
<li class=”menu-item”>’ .
get_avatar($current_user->ID, 20) . ‘<Your Anchor>’ . $current_user->display_name . ‘<End Anchor><i class=”td-icon-logout”></i>’ .
And the following CSS:
.td_user_logd_in{
cursor:pointer!important;
}
Looks like I’m all sorted!
Thanks Chris, I’ll check my settings for that. Hopefully that will sort out the last of my troubles
Final edit, my apologies. I used the wrong require 🙂
<?php
if (!have_posts()) {
global $wp_query;
$wp_query->set_404();
require( trailingslashit( get_template_directory() ). ‘404.php’ );
exit;
}
?>
I realised this doesn’t overwrite existing header information created by certain plugins such as Yoast SEO. Instead, place this at the top of the author.php file:
<?php
if (!have_posts()) {
global $wp_query;
$wp_query->set_404();
require_once( trailingslashit( get_template_directory() ). ‘404.php’ );
exit;
}
?>
Well, I’ve fixed this for now by throwing a 404 on the author.php if !have_posts, but this meant changing the author.php template. I don’t know if this is going to fix much. These pages may still be included within the sitemap. Hopefully I haven’t messed with any functionality of the author template. For anyone dealing with the same issue, in your parent theme > author.php add:
<?php
if (!have_posts()) {
header(“HTTP/1.0 404 Not Found – Archive Empty”);
require TEMPLATEPATH.’/404.php’;
exit;
}
get_header();
?>
To the very top of the file. Unfortunately these are still being indexed, so I’m expecting a few errors in Webmaster Tools.
-
This reply was modified 11 years by
Sean.
Does anyone happen to know if the plugin Profile Builder happens to make any changes to the handling of this? I’m pretty stuck at the moment.
That’s what I’ve been so confused about, it’s subscribers that are getting author pages. I thought it might be the theme but now I’m wondering whether it could be a plugin issue. Example at http://www.xposy.com/author/testsubscriber – Account I made with default user role set to subscriber. Very strange!
Hi Chris,
Thanks for the quick reply! Excellent support. So subscribers will have author pages created for them on signing up? I’ve been looking for a fix to direct subscriber author pages to 404, or preferably not create them at all. Really sorry if this isn’t theme related, I’ll direct that one to WordPress.
Also I was wondering whether the top bar sign in could be linked. I’ve created a page for editing user profiles without the dashboard on the front end. I was hoping to add this link to the td_user_logd_in call href call.
Sorry, just realised the image sizes. I’ve fixed it with CSS for the time being, might move on to the upscale plugin you recommended soon. Thanks very much!
