• I’m trying to help edit this page, and I believe it is using conditional tags so that each page displays DIFFERENT content in the sidebar.

    I will be making changes on this page:
    http://nwmarriagecounseling.com/resources/

    The main body of the page is straightforward, editable from within the WP Dashboard. But, I am not seeing how or where one would edit the contents of the sidebar. Do I need to edit the sidebar.php file??

    I hope someone can steer me in the right direction!

    Thank you!

Viewing 7 replies - 1 through 7 (of 7 total)
  • Thread Starter yukon4

    (@yukon4)

    Nobody?

    I can see the “if-then” statements in the sidebar.php template, but didn’t want to start messing with it without being sure.

    Looks like plain php knowledge is required for getting into conditional tags??

    Help, please!

    And, thank you!

    is the theme using a dynamic sidebar with widgets?
    what exactly are you trying to change?
    what is the full code of the sidebar file?

    Looks like plain php knowledge is required for getting into conditional tags??

    yes – php knowledge is a requirement if you want to customize WordPress themes beyond formatting adaptations.

    Thread Starter yukon4

    (@yukon4)

    I’m not sure if it is using a “dynamic sidebar” with widgets. I’ve worked with WordPress, but I have yet to delve into using conditional tags. There is nothing in the Widget page within the Dashboard.

    I’m wanting to change the contents of the sidebar on that page, and with all these conditional tags going on, I’m unsure WHERE I would do that?? The main body of content is easily updated from the WP page editor. Here is the full code for the sidebar file. Is this where one edits the content of the sidebar? As you can see, it’s slightly different from page to page:

    <?php
    /**
     * @package WordPress
     * @subpackage Connie
     */
    ?>
    <!-- begin sidebar -->
    					<div id="right_column">
    						<!--<?php if (is_page('resources') || $post->post_parent == '63') { ?>
    						<div id="artist">
    						FEATURED ARTIST
    						<br/><a href="http://www.katherinesteiger.com" target="_blank"><span class="kate">Katherine Steiger</span></a>
    						<br/>{ <a href="http://www.katherinesteiger.com" target="_blank">Visit Website</a> }
    						</div>
    						<?php } elseif (is_page('contact') || $post->post_parent == '12') { ?>
    						<div id="artist">
    						FEATURED ARTIST
    						<br/><a href="http://www.katherinesteiger.com" target="_blank"><span class="kate">Katherine Steiger</span></a>
    						<br/>{ <a href="http://www.katherinesteiger.com" target="_blank">Visit Website</a> }
    						</div>
    						<?php } else { ?>
    						<?php } ?>-->
    
    						<ul>
    						<?php if (is_page('404')) { ?>
    						<?php } else { ?>
    						<?php } ?>
    
    					  <?php
    						if(!$post->post_parent){
    							// will display the subpages of this top level page
    							$children = wp_list_pages("title_li=&exclude=63,237,496,507&sort_column=menu_order&child_of=".$post->ID."&echo=0");
    						}else{
    							// diplays only the subpages of parent level
    							//$children = wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0");
    
    							if($post->ancestors)
    							{
    								// now you can get the the top ID of this page
    								// wp is putting the ids DESC, thats why the top level ID is the last one
    								$ancestors = end($post->ancestors);
    								$children = wp_list_pages("title_li=&exclude=63,237,496,507&sort_column=menu_order&child_of=".$ancestors."&echo=0");
    								// you will always get the whole subpages list
    							}
    						}
    
    						if ($children) { ?>
    							<ul>
    								<?php echo $children; ?>
    							</ul>
    						<?php } ?>
    
    						<?php if (is_page('individual-therapy') || $post->post_parent == '4') { ?>
    						<img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/quote_choose.gif">
    						<?php } else { ?>
    						<?php } ?>
    
    						<?php if (is_page('marathon-couples-therapy') || $post->post_parent == '103') { ?>
    						<!--<div id="sidebox">
    						For more information, or to schedule a <b>Marathon Couples Therapy</b> session with Connie, please contact her assistant Cathleen at Cathleen@NWMarriageCounseling.com or  360-296-8050.
    						</div>-->
    						<img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/jasher6.jpg" usemap="#jasher">
    						<br />
    						<br />
    						<img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/quote_tom.gif">
    						<?php } else { ?>
    						<?php } ?>
    
    						<?php if (is_page('couples-therapy') || $post->post_parent == '116') { ?>
    						<br /><br /><br /><br />
    						<img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/sidebar_couples3.jpg">
    						<?php } else { ?>
    						<?php } ?>
    
    						<?php if (is_page('from-clients') || $post->post_parent == '36') { ?>
    						<span id="testimonials">
    						<img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/spacer.gif"><br/>
    						<img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/quote_miraculous.gif">
    						<img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/sidebar_hiking.jpg">
    						<img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/quote_she.gif">
    						<img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/quote_roots.gif">
    						<img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/sidebar_jogging.jpg">
    						<img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/quote_23.gif">
    						<img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/quote_step.gif">
    						</span>
    						<?php } else { ?>
    						<?php } ?>
    
    						<?php if (is_page('from-clinicians') || $post->post_parent == '38') { ?>
    						<span id="testimonials">
    						<br/><br/><br/><br/><br/>
    						<img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/quote_tom.gif">
    						<img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/quote_gentle.gif">
    						<img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/quote_struggles.gif">
    						</span>
    						<?php } else { ?>
    						<?php } ?>
    
    						<?php if (is_page('resources') || $post->post_parent == '63') { ?>
    						<!--<a href="/connie/blog/resources/"><img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/resources.jpg" style="margin:0px 0px 0px 23px;"></a>
    						<br /><br />-->
    						<a href="/connie/blog/"><img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/blog.jpg" style="margin:0px 0px 0px 23px;"></a>
    						<br/><br/>
    						<a href="/connie/blog/books/relationship/"><img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/books.jpg" style="margin:0px 0px 0px 23px;"></a>
    						<br/><br/>
    						<a href="/connie/blog/links/suggested-resources/"><img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/links.jpg" style="margin:0px 0px 0px 23px;"></a>
    						<br/><br/>
    						<img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/sidebar_rediscover.jpg">
    						<?php } else { ?>
    						<?php } ?>
    
    						<?php if (is_page('books') || $post->post_parent == '237') { ?>
    						<a href="/connie/blog/resources/"><img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/resources.jpg" style="margin:0px 0px 0px 23px;"></a>
    						<br /><br />
    						<a href="/connie/blog/"><img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/blog.jpg" style="margin:0px 0px 0px 23px;"></a>
    						<br/><br/>
    						<a href="/connie/blog/links/suggested-resources/"><img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/links.jpg" style="margin:0px 0px 0px 23px;"></a>
    						<br/><br/>
    						<?php
    						if(!$post->post_parent){
    							// will display the subpages of this top level page
    							$children = wp_list_pages("title_li=&exclude=63,496,507&sort_column=menu_order&child_of=".$post->ID."&echo=0");
    						}else{
    							// diplays only the subpages of parent level
    							//$children = wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0");
    
    							if($post->ancestors)
    							{
    								// now you can get the the top ID of this page
    								// wp is putting the ids DESC, thats why the top level ID is the last one
    								$ancestors = end($post->ancestors);
    								$children = wp_list_pages("title_li=&exclude=63,496,507&sort_column=menu_order&child_of=".$ancestors."&echo=0");
    								// you will always get the whole subpages list
    							}
    						}
    
    						if ($children) { ?>
    							<ul>
    								<?php echo $children; ?>
    							</ul>
    						<?php } ?>
    						<?php } else { ?>
    						<?php } ?>
    
    						<?php if (is_page('links') || $post->post_parent == '507') { ?>
    						<a href="/connie/blog/resources/"><img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/resources.jpg" style="margin:0px 0px 0px 23px;"></a>
    						<br /><br />
    						<a href="/connie/blog/"><img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/blog.jpg" style="margin:0px 0px 0px 23px;"></a>
    						<br/><br/>
    						<a href="/connie/blog/books/relationship/"><img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/books.jpg" style="margin:0px 0px 0px 23px;"></a>
    						<br/><br/>
    						<?php
    						if(!$post->post_parent){
    							// will display the subpages of this top level page
    							$children = wp_list_pages("title_li=&exclude=63,237&sort_column=menu_order&child_of=".$post->ID."&echo=0");
    						}else{
    							// diplays only the subpages of parent level
    							//$children = wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0");
    
    							if($post->ancestors)
    							{
    								// now you can get the the top ID of this page
    								// wp is putting the ids DESC, thats why the top level ID is the last one
    								$ancestors = end($post->ancestors);
    								$children = wp_list_pages("title_li=&exclude=63,237&sort_column=menu_order&child_of=".$ancestors."&echo=0");
    								// you will always get the whole subpages list
    							}
    						}
    
    						if ($children) { ?>
    							<ul>
    								<?php echo $children; ?>
    							</ul>
    						<?php } ?>
    						<?php } else { ?>
    						<?php } ?>
    
    						<?php if (is_page('about') || $post->post_parent == '10') { ?>
    						<img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/gottman3.jpg">
    						<br/><br/>
    						<!--Professional verification provided by Psychology Today -->
    						<img src="http://Therapists.PsychologyToday.com/rms/external_verification.php?profid=71970"
    						  height="69" width="146"
    						  alt="verified by Psychology Today" border=0 usemap="#verifiedmap">
    						<map id="verifiedmap" name="verifiedmap">
    						<area shape="rect" coords="0,0,146,38"
    						  alt="verified by Psychology Today"
    						  href="http://Therapists.PsychologyToday.com/rms/verification_personal.php?id=71970"
    						  target="_blank"
    						  onclick="window.open(
    						   'http://Therapists.PsychologyToday.com/rms/verification_personal.php?id=71970',
    						   'window_a',
    						   'width=600,height=400,resizable=yes,scrollbars=no,toolbar=no,location=no,status=no,menubar=no'
    						  );return false;">
    						<area shape="rect" coords="0,38,146,69"
    						  alt="Directory" href="http://Therapists.PsychologyToday.com/rms/71970" target="_blank">
    						</map>
    						<br/><br/><br/><br/><br/><br/>
    						<img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/quote_quickly.gif">
    						<!-- End Verification -->
    						<?php } else { ?>
    						<?php } ?>
    
    						<?php if (is_page('contact') || $post->post_parent == '799') { ?>
    						<?php } else { ?>
    						<?php } ?>
    						</ul>
    
    						<map name="jasher">
    						<area shape="rect" coords="3,288,213,308" href="mailto:Cathleen@NWMarriagecounseling.com" target="_blank" alt="" />
    						</map>
    </div>
    <!-- end sidebar -->

    that ‘resources’ page has the ID 63 – so look for this conditional section:

    <!--<?php if (is_page('resources') || $post->post_parent == '63') { ?>
    						<div id="artist">
    						FEATURED ARTIST
    						<br/><a href="http://www.katherinesteiger.com" target="_blank"><span class="kate">Katherine Steiger</span></a>
    						<br/>{ <a href="http://www.katherinesteiger.com" target="_blank">Visit Website</a> }
    						</div>
    						<?php } ....etc....

    right now the whole section is within a html comment so it won’t show on the site.

    Thread Starter yukon4

    (@yukon4)

    Thank you — but, I still don’t understand where I edit the contents of the sidebar that now displays on this page:

    http://nwmarriagecounseling.com/resources/

    In the sidebar on that specific page, it lists links to “intake form”, “office policies”, “bellingham attractions” etc etc —- I don’t see that in the above sidebar.php code in the ID 63 section. Would my new sidebar content get typed right into the sidebar.php under ID 63??

    Thanks again. I can tell conditional tags are awesome — but I haven’t quite got an overall sense of how to put them together!

    Thread Starter yukon4

    (@yukon4)

    Hello WordPress!

    I’m still utterly LOST when it comes to using conditional tags.

    We’ve just created a new page (ROUGH DRAFT)
    http://nwmarriagecounseling.com/downloadable-resources-draft-2/

    I have a photo and some text to add to that blank sidebar but don’t know HOW or WHERE!?

    Where does one enter the sidebar content so it will show up on this specific page? Where does one enter or edit ANY content?

    Thanks for any help —

    Thread Starter yukon4

    (@yukon4)

    OK, I’ve managed to make a little headway — but still stumped. I don’t think this page was put together very well, frankly.

    I was able to change out an image by editing the sidebar.php file. However, there is more information in the sidebar that doesn’t appear to be editable via the sidebar.php file and I cannot see WHERE one edits the information.

    On this page:
    http://nwmarriagecounseling.com/resources/

    I’ve managed to change the image at the very bottom of the sidebar to the one that you see there. BUT —- we’d also like to delete all the text that is above it and none of that is in the sidebar.php file. Within the WP Dashboard where one edits the main content area of this page – I’m not seeing anything else that I can edit that would affect the sidebar. Here is the complete code for the page (grabbed from my browser, not from WordPress)

    <!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" lang="en-US">
    
    <head profile="http://gmpg.org/xfn/11">
    	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    
    	<title>Downloadable Resources | Connie Feutz</title>
    
    	<style type="text/css" media="screen">
    		@import url( http://nwmarriagecounseling.com/wp-content/themes/connie/style.css );
    	</style>
    
    	<link rel="pingback" href="http://nwmarriagecounseling.com/xmlrpc.php" />
    		<link rel='archives' title='December 2013' href='http://nwmarriagecounseling.com/2013/12/' />
    	<link rel='archives' title='October 2012' href='http://nwmarriagecounseling.com/2012/10/' />
    	<link rel='archives' title='July 2012' href='http://nwmarriagecounseling.com/2012/07/' />
    	<link rel='archives' title='June 2011' href='http://nwmarriagecounseling.com/2011/06/' />
    	<link rel='archives' title='May 2011' href='http://nwmarriagecounseling.com/2011/05/' />
    	<link rel='archives' title='March 2011' href='http://nwmarriagecounseling.com/2011/03/' />
    	<link rel='archives' title='February 2011' href='http://nwmarriagecounseling.com/2011/02/' />
    	<link rel='archives' title='November 2010' href='http://nwmarriagecounseling.com/2010/11/' />
    	<link rel='archives' title='October 2010' href='http://nwmarriagecounseling.com/2010/10/' />
    	<link rel='archives' title='September 2010' href='http://nwmarriagecounseling.com/2010/09/' />
    	<link rel='archives' title='August 2010' href='http://nwmarriagecounseling.com/2010/08/' />
    	<link rel='archives' title='July 2010' href='http://nwmarriagecounseling.com/2010/07/' />
    	<link rel='archives' title='June 2010' href='http://nwmarriagecounseling.com/2010/06/' />
    	<link rel='archives' title='May 2010' href='http://nwmarriagecounseling.com/2010/05/' />
    	<link rel='archives' title='April 2010' href='http://nwmarriagecounseling.com/2010/04/' />
    	<link rel='archives' title='March 2010' href='http://nwmarriagecounseling.com/2010/03/' />
    	<link rel='archives' title='February 2010' href='http://nwmarriagecounseling.com/2010/02/' />
    	<link rel='archives' title='January 2010' href='http://nwmarriagecounseling.com/2010/01/' />
    		<link rel="alternate" type="application/rss+xml" title="Connie Feutz &raquo; Feed" href="http://nwmarriagecounseling.com/feed/" />
    <link rel="alternate" type="application/rss+xml" title="Connie Feutz &raquo; Comments Feed" href="http://nwmarriagecounseling.com/comments/feed/" />
    <link rel='stylesheet' id='open-sans-css'  href='//fonts.googleapis.com/css?family=Open+Sans%3A300italic%2C400italic%2C600italic%2C300%2C400%2C600&subset=latin%2Clatin-ext&ver=3.8.3' type='text/css' media='all' />
    <link rel='stylesheet' id='dashicons-css'  href='http://nwmarriagecounseling.com/wp-includes/css/dashicons.min.css?ver=3.8.3' type='text/css' media='all' />
    <link rel='stylesheet' id='admin-bar-css'  href='http://nwmarriagecounseling.com/wp-includes/css/admin-bar.min.css?ver=3.8.3' type='text/css' media='all' />
    <link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://nwmarriagecounseling.com/xmlrpc.php?rsd" />
    <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://nwmarriagecounseling.com/wp-includes/wlwmanifest.xml" />
    <link rel='prev' title='From Clinicians' href='http://nwmarriagecounseling.com/testimonials/from-clinicians/' />
    <link rel='next' title='Protected: Intake Form' href='http://nwmarriagecounseling.com/resources/intake/' />
    <meta name="generator" content="WordPress 3.8.3" />
    <link rel='shortlink' href='http://nwmarriagecounseling.com/?p=63' />
    
    <!-- All in One SEO Pack 2.1.1 by Michael Torbert of Semper Fi Web Design[293,344] -->
    <link rel="canonical" href="http://nwmarriagecounseling.com/resources/" />
    <!-- /all in one seo pack -->
    <style type="text/css" media="print">#wpadminbar { display:none; }</style>
    <style type="text/css" media="screen">
    	html { margin-top: 32px !important; }
    	* html body { margin-top: 32px !important; }
    	@media screen and ( max-width: 782px ) {
    		html { margin-top: 46px !important; }
    		* html body { margin-top: 46px !important; }
    	}
    </style>
    			<!-- Easy Columns 2.1.1 by Pat Friedl http://www.patrickfriedl.com -->
    			<link rel="stylesheet" href="http://nwmarriagecounseling.com/wp-content/plugins/easy-columns/css/easy-columns.css" type="text/css" media="screen, projection" />
    
    </head>
    
    <body class="page page-id-63 page-parent page-template-default logged-in admin-bar no-customize-support">
    
    		<div id="wrapper">
    
    				<a href="http://nwmarriagecounseling.com/"><div id="logo"><img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/header_4.jpg" /></div></a>
    
    				<div id="nav">
    				<a href="/" id="button_home" ></a>
    				<a href="/services/individual-therapy/" id="button_services" ></a>
    				<a href="/testimonials/from-clients/" id="button_testimonials" ></a>
    				<a href="/blog/" id="button_blog"    class="selected"  ></a>
    				<a href="/about/" id="button_about" ></a>
    				<a href="/contact/form/" id="button_contact" ></a>
    				</div>
    
    				<div id="brushstroke"><img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/spacer.gif" width="950" height="57" usemap="#kate" /></div>
    
    				<map name="kate">
    				<area shape="rect" coords="792,8,917,32" href="http://www.katherinesteiger.com" target="_blank" alt="" />
    				</map>
    
    <!-- end header -->
    
    				<div id="content">
    					<div id="left_column">					
    
    								<h1>Downloadable Resources</h1>
    
    								<div class="storycontent">
    									<h3>Handouts</h3>
    <ol>
    <li><a href="http://nwmarriagecounseling.com/wp-content/uploads/2010/04/Feeling-vocabulary.doc" >Feeling Vocabulary</a></li>
    <li><a href="http://nwmarriagecounseling.com/wp-content/uploads/2010/04/Five-Love-Lanugages.doc" >Five Love Languages</a></li>
    <li><a href="http://nwmarriagecounseling.com/wp-content/uploads/2010/04/EAQ.pdf" >Emotional Abuse Questionnaire</a></li>
    <li><a href="http://nwmarriagecounseling.com/wp-content/uploads/2010/04/Open-ended-questions.doc" >Open-ended Questions</a></li>
    <li><a href="http://nwmarriagecounseling.com/wp-content/uploads/2010/04/Self-soothing-ideas.doc" >Ideas for Self-Soothing</a></li>
    <li><a href="http://nwmarriagecounseling.com/wp-content/uploads/2010/04/Address-Flooding2.doc" >Address Flooding</a></li>
    <li>Take a test online to determine your <a target="_blank" href="http://www.afo.net/hftw-lovetest.asp" >Love Language</a></li>
    </ol>
    <h3>Client Only Resources (Password Protected)</h3>
    <ol>
    <li><a href="/connie/blog/resources/intake/">Intake</a></li>
    <li><a href="/connie/blog/resources/policies/">Office Policies</a></li>
    <li><a href="/connie/blog/resources/marathon-office-policies/">Marathon Office Policies</a></li>
    <li><a href="/connie/blog/resources/sound/">Sound Marital House Assessment</a></li>
    <li><a href="/connie/blog/resources/questionnaire/">Questionnaire</a></li>
    <li><a href="/connie/blog/resources/bellingham/">Bellingham Attractions</a><br />
    <h3>Processes</h3>
    <ol>
    <li><a href="http://nwmarriagecounseling.com/blog/resources/relational-meeting" >Relational Meeting</a></li>
    <li><a href="http://nwmarriagecounseling.com/wp-content/uploads/2010/04/Address-Flooding2.doc" >Address Flooding</a></li>
    <li><a href="/connie/blog/resources/deep-listening/">Deep Listening</a></li>
    <li><a href="/connie/blog/resources/aftermath/">Aftermath of a Regrettable Event</a></li>
    <li><a href="/connie/blog/resources/two-ovals/">Two Ovals</a></li>
    </ol>
    </li>
    </ol>
    								</div>
    								<br/><br/>
    								<a class="post-edit-link" href="http://nwmarriagecounseling.com/wp-admin/post.php?post=63&action=edit">Edit This</a>							
    
    					</div>
    
    					<!-- begin sidebar -->
    					<div id="right_column">
    						<!--						<div id="artist">
    						FEATURED ARTIST
    						<br/><a href="http://www.katherinesteiger.com" target="_blank"><span class="kate">Katherine Steiger</span></a>
    						<br/>{ <a href="http://www.katherinesteiger.com" target="_blank">Visit Website</a> }
    						</div>
    						-->
    
    						<ul>
    
    					  							<ul>
    								<li class="page_item page-item-76"><a href="http://nwmarriagecounseling.com/resources/intake/">Intake Form</a></li>
    <li class="page_item page-item-136"><a href="http://nwmarriagecounseling.com/resources/policies/">Office Policies</a></li>
    <li class="page_item page-item-142"><a href="http://nwmarriagecounseling.com/resources/sound/">Sound Marital House Assessment</a></li>
    <li class="page_item page-item-153"><a href="http://nwmarriagecounseling.com/resources/bellingham/">Bellingham Attractions</a></li>
    <li class="page_item page-item-168"><a href="http://nwmarriagecounseling.com/resources/questionnaire/">Questionnaire</a></li>
    <li class="page_item page-item-173"><a href="http://nwmarriagecounseling.com/resources/relational-meeting/">Relational Meeting</a></li>
    <li class="page_item page-item-176"><a href="http://nwmarriagecounseling.com/resources/deep-listening/">Deep Listening</a></li>
    <li class="page_item page-item-181"><a href="http://nwmarriagecounseling.com/resources/aftermath-of-a-regrettable-event/">Aftermath of a Regrettable Event</a></li>
    <li class="page_item page-item-186"><a href="http://nwmarriagecounseling.com/resources/two-ovals/">Two Ovals</a></li>
    <li class="page_item page-item-1198"><a href="http://nwmarriagecounseling.com/resources/marathon-office-policies/">Marathon Office Policies</a></li>
    							</ul>
    
    						<!--<a href="/connie/blog/resources/"><img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/resources.jpg" style="margin:0px 0px 0px 23px;"></a>
    						<br /><br />-->
    
    						<img src="http://nwmarriagecounseling.com/wp-content/uploads/2014/05/couple_download_sidebar-.jpg">					
    
    																		</ul>
    
    						<map name="jasher">
    						<area shape="rect" coords="3,288,213,308" href="mailto:Cathleen@NWMarriagecounseling.com" target="_blank" alt="" />
    						</map>
    </div>
    <!-- end sidebar -->
    
    				<br clear="all" />
    				</div>				
    
    			<br clear="all" />
    
    			<!-- begin footer -->
    			<div id="footer">
    				<div id="footer_text">&copy; 2010 Connie Feutz &nbsp; &nbsp; | &nbsp; &nbsp; website by <a href="http://www.beneficialdesign.com" target="_blank">beneficial design</a>
    				<!--
    						-->
    				</div>
    			</div>
    
    	</div>
    
    	<div id="preload">
    	   <img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/button_home_over.gif" />
    	   <img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/button_services_over.gif" />
    	   <img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/button_testimonials_over.gif" />
    	   <img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/button_blog_over.gif" />
    	   <img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/button_about_over.gif" />
    	   <img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/button_contact_over.gif" />
    	   <img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/header_.jpg" />
    	   <img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/header_1.jpg" />
    	   <img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/header_2.jpg" />
    	   <img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/header_3.jpg" />
    	   <img src="http://nwmarriagecounseling.com/wp-content/themes/connie/images/header_4.jpg" />
    	</div>
    
    <!-- tracker not added by Ultimate Google Analytics plugin v1.6.0: http://www.oratransplant.nl/uga -->
    <!-- tracker is not added for a logged on user of this level -->
    <script type='text/javascript' src='http://nwmarriagecounseling.com/wp-includes/js/admin-bar.min.js?ver=3.8.3'></script>
    	<script type="text/javascript">
    		(function() {
    			var request, b = document.body, c = 'className', cs = 'customize-support', rcs = new RegExp('(^|\\s+)(no-)?'+cs+'(\\s+|$)');
    
    			request = true;
    
    			b[c] = b[c].replace( rcs, ' ' );
    			b[c] += ( window.postMessage && request ? ' ' : ' no-' ) + cs;
    		}());
    	</script>
    			<div id="wpadminbar" class="nojq nojs" role="navigation">
    			<a class="screen-reader-shortcut" href="#wp-toolbar" tabindex="1">Skip to toolbar</a>
    			<div class="quicklinks" id="wp-toolbar" role="navigation" aria-label="Top navigation toolbar." tabindex="0">
    				<ul id="wp-admin-bar-root-default" class="ab-top-menu">
    		<li id="wp-admin-bar-wp-logo" class="menupop"><a class="ab-item"  aria-haspopup="true" href="http://nwmarriagecounseling.com/wp-admin/about.php" title="About WordPress"><span class="ab-icon"></span></a><div class="ab-sub-wrapper"><ul id="wp-admin-bar-wp-logo-default" class="ab-submenu">
    		<li id="wp-admin-bar-about"><a class="ab-item"  href="http://nwmarriagecounseling.com/wp-admin/about.php">About WordPress</a>		</li></ul><ul id="wp-admin-bar-wp-logo-external" class="ab-sub-secondary ab-submenu">
    		<li id="wp-admin-bar-wporg"><a class="ab-item"  href="http://wordpress.org/">WordPress.org</a>		</li>
    		<li id="wp-admin-bar-documentation"><a class="ab-item"  href="http://codex.wordpress.org/">Documentation</a>		</li>
    		<li id="wp-admin-bar-support-forums"><a class="ab-item"  href="http://wordpress.org/support/">Support Forums</a>		</li>
    		<li id="wp-admin-bar-feedback"><a class="ab-item"  href="http://wordpress.org/support/forum/requests-and-feedback">Feedback</a>		</li></ul></div>		</li>
    		<li id="wp-admin-bar-site-name" class="menupop"><a class="ab-item"  aria-haspopup="true" href="http://nwmarriagecounseling.com/wp-admin/">Connie Feutz</a><div class="ab-sub-wrapper"><ul id="wp-admin-bar-site-name-default" class="ab-submenu">
    		<li id="wp-admin-bar-dashboard"><a class="ab-item"  href="http://nwmarriagecounseling.com/wp-admin/">Dashboard</a>		</li></ul><ul id="wp-admin-bar-appearance" class="ab-submenu">
    		<li id="wp-admin-bar-themes"><a class="ab-item"  href="http://nwmarriagecounseling.com/wp-admin/themes.php">Themes</a>		</li>
    		<li id="wp-admin-bar-customize" class="hide-if-no-customize"><a class="ab-item"  href="http://nwmarriagecounseling.com/wp-admin/customize.php?url=http%3A%2F%2Fnwmarriagecounseling.com%2Fresources%2F">Customize</a>		</li>
    		<li id="wp-admin-bar-widgets"><a class="ab-item"  href="http://nwmarriagecounseling.com/wp-admin/widgets.php">Widgets</a>		</li>
    		<li id="wp-admin-bar-menus"><a class="ab-item"  href="http://nwmarriagecounseling.com/wp-admin/nav-menus.php">Menus</a>		</li></ul></div>		</li>
    		<li id="wp-admin-bar-updates"><a class="ab-item"  href="http://nwmarriagecounseling.com/wp-admin/update-core.php" title="2 Plugin Updates, 3 Theme Updates"><span class="ab-icon"></span><span class="ab-label">5</span><span class="screen-reader-text">2 Plugin Updates, 3 Theme Updates</span></a>		</li>
    		<li id="wp-admin-bar-comments"><a class="ab-item"  href="http://nwmarriagecounseling.com/wp-admin/edit-comments.php" title="0 comments awaiting moderation"><span class="ab-icon"></span><span id="ab-awaiting-mod" class="ab-label awaiting-mod pending-count count-0">0</span></a>		</li>
    		<li id="wp-admin-bar-new-content" class="menupop"><a class="ab-item"  aria-haspopup="true" href="http://nwmarriagecounseling.com/wp-admin/post-new.php" title="Add New"><span class="ab-icon"></span><span class="ab-label">New</span></a><div class="ab-sub-wrapper"><ul id="wp-admin-bar-new-content-default" class="ab-submenu">
    		<li id="wp-admin-bar-new-post"><a class="ab-item"  href="http://nwmarriagecounseling.com/wp-admin/post-new.php">Post</a>		</li>
    		<li id="wp-admin-bar-new-media"><a class="ab-item"  href="http://nwmarriagecounseling.com/wp-admin/media-new.php">Media</a>		</li>
    		<li id="wp-admin-bar-new-link"><a class="ab-item"  href="http://nwmarriagecounseling.com/wp-admin/link-add.php">Link</a>		</li>
    		<li id="wp-admin-bar-new-page"><a class="ab-item"  href="http://nwmarriagecounseling.com/wp-admin/post-new.php?post_type=page">Page</a>		</li>
    		<li id="wp-admin-bar-new-user"><a class="ab-item"  href="http://nwmarriagecounseling.com/wp-admin/user-new.php">User</a>		</li></ul></div>		</li>
    		<li id="wp-admin-bar-edit"><a class="ab-item"  href="http://nwmarriagecounseling.com/wp-admin/post.php?post=63&action=edit">Edit Page</a>		</li></ul><ul id="wp-admin-bar-top-secondary" class="ab-top-secondary ab-top-menu">
    		<li id="wp-admin-bar-search" class="admin-bar-search"><div class="ab-item ab-empty-item" tabindex="-1"><form action="http://nwmarriagecounseling.com/" method="get" id="adminbarsearch"><input class="adminbar-input" name="s" id="adminbar-search" type="text" value="" maxlength="150" /><input type="submit" class="adminbar-button" value="Search"/></form></div>		</li>
    		<li id="wp-admin-bar-my-account" class="menupop with-avatar"><a class="ab-item"  aria-haspopup="true" href="http://nwmarriagecounseling.com/wp-admin/profile.php" title="My Account">Howdy, connie<img alt='' src='http://1.gravatar.com/avatar/321eb3d7d2eec2c859783ed86264484f?s=26&d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D26&r=G' class='avatar avatar-26 photo' height='26' width='26' /></a><div class="ab-sub-wrapper"><ul id="wp-admin-bar-user-actions" class="ab-submenu">
    		<li id="wp-admin-bar-user-info"><a class="ab-item" tabindex="-1" href="http://nwmarriagecounseling.com/wp-admin/profile.php"><img alt='' src='http://1.gravatar.com/avatar/321eb3d7d2eec2c859783ed86264484f?s=64&d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D64&r=G' class='avatar avatar-64 photo' height='64' width='64' /><span class='display-name'>connie</span></a>		</li>
    		<li id="wp-admin-bar-edit-profile"><a class="ab-item"  href="http://nwmarriagecounseling.com/wp-admin/profile.php">Edit My Profile</a>		</li>
    		<li id="wp-admin-bar-logout"><a class="ab-item"  href="http://nwmarriagecounseling.com/wp-login.php?action=logout&_wpnonce=ff4889e821">Log Out</a>		</li></ul></div>		</li></ul>			</div>
    						<a class="screen-reader-shortcut" href="http://nwmarriagecounseling.com/wp-login.php?action=logout&_wpnonce=ff4889e821">Log Out</a>
    					</div>
    
    </body>
    </html>

    I’d like to delete the list of links in the sidebar starting from Intake Form all the way to Marathon —– where is this stuff???

    Help! (and thank you — I realize everybody’s busy)

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘How to Edit Sidebar w/ Conditional Tags’ is closed to new replies.