• Hi,

    New to WP and using the Traction theme.

    Does anyone know what controls the links at the top of every page? Is there a way to get rid of them or only show certain links based on user permissions? Ditto the page footer.

    Thanks,
    JJJ

Viewing 1 replies (of 1 total)
  • The header nav (from “header.php”):

    <div id="pg-nav">
    	<ul class="nav">
    		<li class="page_item <?php if (is_front_page()) echo( 'current_page_item' );?>"><a href="<?php bloginfo( 'url' ); ?>"><?php _e( 'Home', 'traction' ); ?></a></li>
    		<?php if ($traction->hidePages() !== 'true' ) : ?>
    			<?php wp_list_pages( 'title_li=' ); ?>
    		<?php endif; ?>
    	</ul>
    </div><!--end page-navigation-->

    1) This Theme is using wp_list_pages(), so it is a list of all of your static Pages

    2) It appears that the Theme has an option to hide this menu, so look for the Theme Options page.

    3) This Theme is a free version of a commercial Theme, for which the developer offers paid upgrades and support. You should consult the Developer for support:
    https://thethemefoundry.com/traction/

Viewing 1 replies (of 1 total)
  • The topic ‘Modifying Traction theme’ is closed to new replies.