Forums

Remove Meta category? (6 posts)

  1. cassandraellen
    Member
    Posted 3 years ago #

    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

  2. cassandraellen
    Member
    Posted 3 years ago #

    Anyone?

  3. Samuel B
    moderator
    Posted 3 years ago #

    remove the "meta" widget for that sidebar
    admin - appearance/design - widgets

  4. cassandraellen
    Member
    Posted 3 years ago #

    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 } ?>
  5. Samuel B
    moderator
    Posted 3 years ago #

    <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

  6. cassandraellen
    Member
    Posted 3 years ago #

    Silly me.

    Thank youuu!

Topic Closed

This topic has been closed to new replies.

About this Topic