• Am using Colorway Theme and managed to get rid of the duplicate Home tab from nav bar by creating my own menu – as I prefer Welcome for my home page.

    Now my problem is deleting the link that appears on each subsequent page ie. home >> tariffs & conditions on my “tariffs & conditions” page, then home >> gallery on my “gallery” page etc.

    I want to know where to find the code that relates to this text and delete it. It makes the page look messy as I already have nice titles saying Gallery etc. and don’t need it repeated.

    Any help would be greatly appreciated.

Viewing 8 replies - 1 through 8 (of 8 total)
  • sacredpath

    (@sacredpath)

    Automattic Happiness Engineer

    We need a link to the site in order to be able to help.

    Open /colorway/functions/inkthemes-functions.php and comment out the breadcrumbs plugin. Lines 60-151 inclusive.

    Thread Starter Monique222

    (@monique222)

    Thanks CJ – as you can tell I’m v. new at this but loving it. Learning something new everyday. Was only just wondering what “breadcrumbs” were (was going to educate myself later) and as it turns out, they are exactly what I’m trying to get rid of!

    Appreciate your speedy solution. Happy Holidays.

    You’re welcome. I hope it has the effect you want.

    Happy Holidays!

    I had this same problem. Thank you SO MUCH! I went to inkthemes-functions.php, scrolled down until I saw the header “*Breadcrumbs Plugin”, and simply deleted all the code after that up until the next series.

    Now if ONLY I could change the color of my theme. I can’t find ANYWHERE the actually color #’s… and where I do see them, the ones I want to change don’t exist. I am beginning to think that the programmers developed “Colorway” in such a way, that they force you to buy the pro version…

    Cheer!

    ~Katherine

    This is what I found under theme-options.php

    function optionsframework_options() {
    $themename = get_theme_data(STYLESHEETPATH . ‘/style.css’);
    $themename = ‘Colorway Lite Theme’;

    But the colorway #’s exist only in editor-style.css, but the color green or it’s sister # does not exist.

    Anyone have a clue??

    Katherine

    this is the codes of my theme
    I want to know how to delete the HOME page. Thank you for your help

    <?php
    /**
    * The Header for our theme.
    *
    * Displays all of the <head> section and everything up till <div id=”main”>
    *
    * @package WordPress
    * @subpackage Bouquet
    */
    ?><!DOCTYPE html>
    <!–[if IE 8]>
    <html id=”ie8″ <?php language_attributes(); ?>>
    <![endif]–>
    <!–[if !(IE 8) ]><!–>
    <html <?php language_attributes(); ?>>
    <!–<![endif]–>
    <head>
    <meta charset=”<?php bloginfo( ‘charset’ ); ?>” />
    <meta name=”viewport” content=”width=device-width” />
    <title><?php
    /*
    * Print the <title> tag based on what is being viewed.
    */
    global $page, $paged;

    wp_title( ‘|’, true, ‘right’ );

    // Add the blog name.
    bloginfo( ‘name’ );

    // Add the blog description for the home/front page.
    $site_description = get_bloginfo( ‘description’, ‘display’ );
    if ( $site_description && ( is_home() || is_front_page() ) )
    echo ” | $site_description”;

    // Add a page number if necessary:
    if ( $paged >= 2 || $page >= 2 )
    echo ‘ | ‘ . sprintf( __( ‘Page %s’, ‘bouquet’ ), max( $paged, $page ) );

    ?></title>
    <link rel=”profile” href=”http://gmpg.org/xfn/11&#8243; />
    <link rel=”stylesheet” type=”text/css” media=”all” href=”<?php bloginfo( ‘stylesheet_url’ ); ?>” />
    <?php if ( is_singular() && get_option( ‘thread_comments’ ) ) wp_enqueue_script( ‘comment-reply’ ); ?>
    <link rel=”pingback” href=”<?php bloginfo( ‘pingback_url’ ); ?>” />
    <!–[if lt IE 9]>
    <script src=”<?php echo get_template_directory_uri(); ?>/js/html5.js” type=”text/javascript”></script>
    <![endif]–>

    <?php wp_head(); ?>
    </head>

    <body <?php body_class(); ?>>
    <div id=”page” class=”hfeed”>
    <header id=”branding” role=”banner” class=”clearfix”>
    ” title=”<?php echo esc_attr( get_bloginfo( ‘name’, ‘display’ ) ); ?>” rel=”home”>
    <hgroup>
    <h1 id=”site-title”>” title=”<?php echo esc_attr( get_bloginfo( ‘name’, ‘display’ ) ); ?>” rel=”home”><?php bloginfo( ‘name’ ); ?></h1>
    <h2 id=”site-description”><?php bloginfo( ‘description’ ); ?></h2>
    </hgroup>
    </header><!– #branding –>

    <div id=”main”>

    <div id=”primary”>

    <nav id=”access” role=”navigation” class=”clearfix”>
    <h1 class=”assistive-text section-heading”><?php _e( ‘Main menu’, ‘bouquet’ ); ?></h1>
    <div class=”skip-link screen-reader-text”>“><?php _e( ‘Skip to content’, ‘bouquet’ ); ?></div>

    <?php wp_nav_menu( array( ‘theme_location’ => ‘primary’ ) ); ?>
    </nav><!– #access –>

    How can I remove the logo from the home page but show it on the other page? I’ve tried editing the header.php and index.php files but the logo is still shown on the home page.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Colorway Theme delete home >> from pages’ is closed to new replies.