Hi, for some reason I can no longer access the ‘theme options’ for my site – I tried disabling all plugins but the problem persists… Could you please advise what might be causing this?
It was working fine but then suddenly the option to access theme options from within the site dissapeared – it still showed from the frontend but then said that I didn’t have the ability to access that link when I clicked on it…
The one change I did that might have affected it was adding the line of code
add_action(‘kleo_before_main’, ‘sq7rdu_show_featured_before_content’);
function sq7rdu_show_featured_before_content() {
if (is_single()) {
if (has_post_thumbnail()) {
echo ‘<div class=”fullwidth-image-before-content”>’;
echo the_post_thumbnail(‘full’);
echo ‘</div>’;
}
}
}
To the template file, as instructed on your site – this worked as expected.
Is this a common problem, and do you know what might be causing it?
Thanks!
Andrew