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...
I'm new to CSS but I'm willing to learn! Thanks :)
Cassandra
Anyone?
remove the "meta" widget for that sidebar
admin - appearance/design - widgets
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 } ?><h3 class="widgettitle">Meta</h3>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<?php wp_meta(); ?>
</ul>
remove this bit after backing up your file
Silly me.
Thank youuu!
This topic has been closed to new replies.