Am I able to remove the Meta category on my site?
It's not in the Atahualpa settings, and I don't want to just going around deleting code willy-nilly... well, I've tried a few things, but nothing I've done so far has worked.
Help?
Am I able to remove the Meta category on my site?
It's not in the Atahualpa settings, and I don't want to just going around deleting code willy-nilly... well, I've tried a few things, but nothing I've done so far has worked.
Help?
Have you tried going to the "widgets" section of your dashboard, and placing only the widgets you want in the left and right sidebar areas?
Yes, I have. I have zero Widgets active, at the moment. I think the problem is in the code (sidebar2.php), shown below... I'm just unsure of what needs to be changed.
<?php
global $options;
foreach ($options as $value) {
if (get_settings( $value['id'] ) === FALSE) { $$value['id'] = $value['std']; } else { $$value['id'] = get_settings( $value['id'] ); } }
?>
<?php if ($ata_rightcolumn_width != 0) { ?>
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(2) ) : ?>
<?php wp_list_bookmarks('categorize=1&category_before=&category_after=&title_before=<h3 class="widgettitle">&title_after=</h3>'); ?>
<h3 class="widgettitle">Meta</h3>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<?php wp_meta(); ?>
</ul>
<?php endif; ?>
<?php } ?>I figured it out.
Duhhh.
Thanks anyway!
I'm trying to do the same - can you please let me know how you resolved this issue?
Apologies I've figured it out - go into the sidebar.php file and remove it from there!
This topic has been closed to new replies.