I have this theme on test on a site and I have added the "custom Field" called thumb and that works fine on the front page, but when I view the actual post the post thumb is included at the top of the post, I have also UN ticked the "post thumbnail" in the single post option on the theme but that makes no change at all!!!
springfeldt
Member
Posted 3 years ago #
hello, i had the same problem and finally i found a very simple solution.
you have to delete the following code in single.php:
<?php arras_postheader() ?>
...and it will work fine. on my page http://www.springfeldt.de you can see!
hope, i could help you.
springfeldt
sorry for my bad english, but i'm a german guy:-)
springfeldt
Member
Posted 3 years ago #
sorry, was totally nonsense. instead you have to delete
$postheader .= '<div class="entry-photo"><img src="' . arras_get_thumbnail($w, $h) . '" alt="' . get_the_title() . '" title="' . get_the_title() . '" /></div>';
in filters.php
this should work
this refers to version 1.3.5
a better fix would be to change line 95 on filters.php to:
if (arras_get_option('single_thumbs') && $lead ) {
instead of
if ($lead) {
this will make the code take into account the settings you specify on the theme options