• Im using the Freshy 2 theme Im my blog. Under “Freshy Theme Options” Im trying to delete a custom menu entry. When I press update it says that its been updated successfully but the custom menu button is still on the page. Several people have reported the same problem on the authors site, but to no avail.

    So Im figuring that I will have to go into the menu’s css code and delete the custom menu entry manually. But I have a very basic knowledge of css code and cant seem to identify which part to delete in order to get my desired results.

    The website Im having the issues with this code is https://www.djdeucedeuce.com.

    Id be willing to post the menu code here if someone thinks they might be of any help.

    Thanks.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Which menu button are you referring to?

    Many themes use the template tag, wp_list_pages(), in the theme’s header.php to display a menu. Some theme’s also hardcode menu options (e.g. Home) in header.php.

    Thread Starter somekidfromct

    (@somekidfromct)

    On my page and in my menu Im referring to all but the Home and Contact buttons. So the 2 “blog” buttons and also the “booking” button is what Im trying to get rid of.

    You should check your Appearance->Freshy Theme Options.

    Those buttons may be a result of Pagess you’ve created. If so you could use the exclude= with the template tag, wp_list_pages(), that is in the header.php file.

    Thread Starter somekidfromct

    (@somekidfromct)

    I created the links because I originally intended to link them to the pages I had created. But I deleted all the pages.

    Here is my header PHP:

    <?php
    if(function_exists(‘yy_redirect’)) yy_redirect();
    define (‘TEMPLATE_DOMAIN’,’freshy2′);
    load_theme_textdomain(TEMPLATE_DOMAIN);
    global $freshy_options;
    $freshy_options = get_option(‘freshy_options’);

    ?>
    <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Strict//EN”
    https://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd”&gt;
    <html xmlns=”https://www.w3.org/1999/xhtml&#8221; xml:lang=”en” lang=”en”>
    <head profile=”https://gmpg.org/xfn/11″&gt;
    <meta http-equiv=”Content-Type” content=”<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>” />
    <title><?php bloginfo(‘name’); ?> <?php wp_title(); ?></title>
    <meta name=”generator” content=”WordPress <?php bloginfo(‘version’); ?>” />
    <link rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_url’); ?>” type=”text/css” media=”screen” title=”Freshy”/>
    <!–[if lte IE 6]>
    <link rel=”stylesheet” href=”<?php print get_bloginfo(‘stylesheet_directory’).’/fix-ie.php’; ?>” type=”text/css” media=”screen”/>
    <![endif]–>
    <link rel=”alternate” type=”application/rss+xml” title=”RSS 2.0″ href=”<?php bloginfo(‘rss2_url’); ?>” />
    <link rel=”alternate” type=”text/xml” title=”RSS .92″ href=”<?php bloginfo(‘rss_url’); ?>” />
    <link rel=”alternate” type=”application/atom+xml” title=”Atom 0.3″ href=”<?php bloginfo(‘atom_url’); ?>” />
    <link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />
    <?php wp_get_archives(‘type=monthly&format=link’); ?>
    <?php wp_head(); ?>
    </head>
    <body>
    <div id=”body”>

    <div id=”header”>
    <div class=”container”>

    <div id=”quicklinks”>

    <?php if($freshy_options[‘header_search’]) : include (TEMPLATEPATH . ‘/searchform.php’); endif; ?>
    </div>
    </div>
    <div id=”header_image”>

    <div id=”menu”>
    <div class=”menu_container”>

    </div><span class=”menu_end”></span>
    </div>

    </div>
    </div>
    </div>

    <div id=”page” <?php echo freshy_layout_class() ?>>

    <div id=”frame”>

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How do I delete a custom menu entry in the Freshy 2 theme?’ is closed to new replies.