Forum Replies Created

Viewing 15 replies - 1 through 15 (of 18 total)
  • I’m also having the same issue. The site is currently not live right now, but basically when I look at “Inspect Element” in Chrome, I get this HTML code for where the images should be:

    <img src title="Facebook" class="ssbl ssbl-img" alt="Share on Facebook">

    So only the alt text is showing on my pages and posts.

    I’m currently using WordPress 4.3.1.

    Will updating the Revolution Slider delete the slides if I already have a slider set up? I’ve exported the slider just to be safe…

    Bumping this up because I am having the same issue on my site. Not sure why it is suddenly showing this error message with “navigation” misspelled… anyone have a solution yet?

    Thread Starter sleepy_daze

    (@sleepy_daze)

    Thanks! I see how this works, but I can’t get seem to get it to work with the Twenty Twelve theme… The link to the site I’m working with is here.

    Forum: Plugins
    In reply to: Simple Sidebar Navigation
    Thread Starter sleepy_daze

    (@sleepy_daze)

    Thanks, that kind of helped… but I’m still not getting the rollover drop-down menus… it’s just appearing as a list of bulleted links. Is it possible for me to email you to show you added information and screenshots regarding this issue?

    Thread Starter sleepy_daze

    (@sleepy_daze)

    Sorry about that! I just don’t know how to delete this thread now.

    Thread Starter sleepy_daze

    (@sleepy_daze)

    Hey, could someone help me create a horizontal navigation drop-down menu for the Gracia theme? The following is in my header.php code:

    <div class="navcontainer">
    		<?php
                        if(function_exists('wp_nav_menu')) {
                            wp_nav_menu( 'depth=1&theme_location=menu_2&menu_id=nav&container=&fallback_cb=menu_2_default');
                        } else {
                            menu_2_default();
                        }
    
                        function menu_2_default()
                        {
                            ?>
                            <ul id="nav">
        						<li <?php if(is_home()) { echo ' class="current-cat" '; } ?>><a href="<?php bloginfo('url'); ?>">Home</a></li><!--
        						<?php wp_list_pages('depth=2&hide_empty=0&orderby=name&order=ASC&title_li=' ); ?>-->
        					</ul>
                            <?php
                        }
                    ?>		
    
    				</div>

    The second part is commented out because it reveals ALL of the pages on the website. However, I don’t want it to do that. There are parent and children (and even grandchildren) pages and I want to create drop-down menus that reflects that hierarchy. Please help!

    I’ve created a custom menu that shows the hierarchy, so is there a way to call that custom menu (which is called “Navigation”)?

    Thread Starter sleepy_daze

    (@sleepy_daze)

    The problem with not assigning parent pages is that some of the pages do have parent pages. Before this navigation was (somehow) deleted, it had drop-down menus. So how would I apply the pages that don’t have parent pages to “wp_list_pages” ?

    Thread Starter sleepy_daze

    (@sleepy_daze)

    No, should I do that and assigned an order number to them?

    Thread Starter sleepy_daze

    (@sleepy_daze)

    I’m pretty sure that I found where the menu is generated in the code for the “originalheader.php” file. I just don’t know how to add the pages:

    <div id="pagemenucontainer">
    						<ul id="pagemenu">
    							<li <?php if(is_home()) { ?> class="current_page_item" <?php } ?>><a href="<?php echo get_option('home'); ?>/">Home</a></li>
    							<?php wp_list_pages('depth=1&sort_column=menu_order&title_li=' ); ?>
    						</ul>
    					</div>

    Thread Starter sleepy_daze

    (@sleepy_daze)

    Nope, but there is a div called “pagemenucontainer”… maybe I’ll need to add some code in there?

    Do you think that there is some sort of place outside of the code on the dashboard that might have been changed?

    Nonetheless, below is the code for my header.php file:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
    
    <head profile="http://gmpg.org/xfn/11">
    <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
    
    <title><?php wp_title(''); ?><?php if(wp_title('', false)) { echo ' |'; } ?> <?php bloginfo('name'); ?></title>
    <link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/css/screen.css" type="text/css" media="screen, projection" />
    <link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/css/print.css" type="text/css" media="print" />
    <!--[if IE]><link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/css/ie.css" type="text/css" media="screen, projection"><![endif]-->
    <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
    <?php if(get_theme_option('featured_posts') != '' && is_home()) {
    ?>
    <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/jdgallery/jd.gallery.css" type="text/css" media="screen" charset="utf-8" />
    <script src="<?php bloginfo('template_directory'); ?>/jdgallery/mootools-1.2.1-core-yc.js" type="text/javascript"></script>
    <script src="<?php bloginfo('template_directory'); ?>/jdgallery/mootools-1.2-more.js" type="text/javascript"></script>
    <script src="<?php bloginfo('template_directory'); ?>/jdgallery/jd.gallery.js" type="text/javascript"></script>
    <script src="<?php bloginfo('template_directory'); ?>/jdgallery/jd.gallery.transitions.js" type="text/javascript"></script>
    <?php } ?>
    <!--[if IE 6]>
    	<script src="<?php bloginfo('template_url'); ?>/js/pngfix.js"></script>
    <![endif]-->
    <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
    <link rel="alternate" type="application/atom+xml" title="<?php bloginfo('name'); ?> Atom Feed" href="<?php bloginfo('atom_url'); ?>" />
    <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
    <link rel="stylesheet" href="http://ahelpinghandnc.org/wp-content/plugins/simple-sidebar-navigation/customsuckerfish.css" type="text/css" media="screen, projection" />
    <script src="http://ahelpinghandnc.org/wp-content/plugins/simple-sidebar-navigation/suckerfish_ie.js" type="text/javascript"></script>
    </head>
    <body>
    
    	<div id="wrapper">
    		<div id="container" class="container">
    			<div class="span-24">
    				<div class="span-14">
    					<div id="pagemenucontainer">
    						<ul id="pagemenu">
    							<li><img src="<?php bloginfo('template_url'); ?>/images/tagline.png"  style="margin:0 4px 0 0;"  /></li>
    							</ul>
    					</div>
    				</div>
    
                    <div class="span-3 feedtwitter" style="margin-top: 5px; text-align:right;">
    					<a href="<?php bloginfo('rss2_url'); ?>"><img src="<?php bloginfo('template_url'); ?>/images/rss.png"  style="margin:0 4px 0 0;"  /></a>
    					<?php if(get_theme_option('twitter') != '') { ?><a href="<?php echo get_theme_option('twitter'); ?>" title="<?php echo get_theme_option('twittertext'); ?>"><img src="<?php bloginfo('template_url'); ?>/images/twitter.png"  style="margin:0 4px 0 0; "  title="<?php echo get_theme_option('twittertext'); ?>" /></a><?php } ?>
    				</div>
    
    				<div id="topsearch" class="span-7 last">
    					<?php get_search_form(); ?>
    				</div>
    			</div>
    				<div id="header" class="span-24">
    					<div class="span-11">
    						<?php
    						$get_logo_image = get_theme_option('logo');
    						if($get_logo_image != '') {
    							?>
    							<a href="<?php bloginfo('url'); ?>"><img src="<?php echo $get_logo_image; ?>" alt="<?php bloginfo('name'); ?>" title="<?php bloginfo('name'); ?>" class="logoimg" /></a>
    							<?php
    						} else {
    							?>
    							<h1><a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a></h1>
    							<h2><?php bloginfo('description'); ?></h2>
    							<?php
    						}
    						?>
    
    					</div>
    
    					<div class="span-13 last" style="padding-top: 5px; text-align:center;">
    						<?php echo get_theme_option('ad_header'); ?>
    					</div>
    				</div>
    
    			<div class="span-24">
    			<div class="navcontainer">
    					<ul id="nav">
    						<li <?php if(is_home()) { echo ' class="current-cat" '; } ?>><a href="<?php bloginfo('url'); ?>">Home</a></li><li <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Simple Top Nav') ) : ?>> <!--YOUR OLD NAVIGATION --><?php endif; ?></li>
    												</ul>
    												</div>
    												<div class="contain">
    	</div>

    Thread Starter sleepy_daze

    (@sleepy_daze)

    Yeah, I just tested it. When I add a “Custom Menu”, it adds the navigation to the sidebar. And when I add a new link to the “Links” section, it also adds the link to the sidebar.

    Thread Starter sleepy_daze

    (@sleepy_daze)

    I checked “Custom Menu” and it appears to add a “Custom Menu” to the theme’s sidebar… So I’m assuming that’s not the horizontal navigation menu.

    Thread Starter sleepy_daze

    (@sleepy_daze)

    Thanks! I’m not exactly sure where it’s supposed to go though… in header.php or index.php…?

    Thread Starter sleepy_daze

    (@sleepy_daze)

    I think it’s HTML. I’m just not sure where in WordPress the fix for this could be

Viewing 15 replies - 1 through 15 (of 18 total)