Viewing 13 replies - 1 through 13 (of 13 total)
  • Currently, when I click the link it takes me to the Facebook homepage/NewsFeed. When I searched Facebook for “msdlawaz” I found this page:

    https://www.facebook.com/msdlawaz25

    Is that the page you’re trying to link to? If so, try using that link in place of the longer one currently used for the Facebook logo link on your site.

    Thread Starter msdlawaz

    (@msdlawaz)

    Yes that is the link I am trying to use. However, I cannot figure out how to change the link from the longer one (not working to this one). When I click the link for Facebook on the site MSDLawAz.com if not logged into Facebook (it tries to load the page but doesn’t find it and auto-redirects to Facebook.com homepage with login prompt showing) when logged in it redirects as you say to News Feed. I am trying to figure out how to replace the link with the shorter one. From what I gather (these image links are on every page of the site so editing a specific page’s HTML won’t work – this is site specific – if page specific could fix it for each page one by one) from what I understand these icons are part of the appearance of the site so go in Appearance, Themes and to header settings but cannot find how to fix this link. Just curious but is there anyway to contact WordPress staff for support?

    Here is the code for the site with the graphic links:

    [please mark any posted code – http://codex.wordpress.org/Forum_Welcome#Posting_Code ]

    <li><a href="/DREAM-MEMO.pdf"><img src="http://msdlawaz.com/wp-content/themes/put/images/pdf.png" width="35" height="35" border="0" /></a></li>
    <li><a href="http://www.avvo.com/attorneys/85012-az-monika-suddevaraj-405594.html"><img src="http://msdlawaz.com/wp-content/themes/put/images/star.png" width="35" height="35" border="0" /></a></li>
    <li><a href="http://www.facebook.com/pages/Msdlawaz/149124241878625"><img src="http://msdlawaz.com/wp-content/themes/put/images/fb.png" width="35" height="35" border="0" /></a></li>
    <li><a href="http://www.linkedin.com/in/msdlawaz"><img src="http://msdlawaz.com/wp-content/themes/put/images/in.png" width="35" height="35" border="0" /></a></li>

    Obviously the link above for Facebook is what needs fixing. Where can I find this code when I login to the site and manually edit the link?

    if you cannot contact the original developer of your theme for support, you might need to go through all template files of your theme, using the ‘appearance – editor’ and search for the code.

    start with header.php …

    Thread Starter msdlawaz

    (@msdlawaz)

    Okay thanks for the tip. I’ll try that and report back how it went ASAP.

    Thread Starter msdlawaz

    (@msdlawaz)

    Well I can’t edit it in Appearance Editor as that code does not appear there. I have a backup of the site’s files on my computer but cannot locate the header.pho file there. I have a modified theme (Twenty Eleven style) that I customized for the website and renamed MSDLawAZ. I’ll have to contact the developer of the theme or WordPress directly for support.

    if you can, try to reach the developer who customized your theme, and ask where those social media links are coded.

    you are already with the support for WordPress.org or the theme Twenty Eleven.
    however, as your theme is custom edited, any help through this forum is getting rather more complicated….

    if the social media links are not directly in the code of header.php, there might be a link to a function or a call of another template in the code (?).

    what is the full code of header.php?

    Thread Starter msdlawaz

    (@msdlawaz)

    Ok I have a backup of the site on my PC. I am searching the backup for header.php file and when I find it will submit the full code here. Okay within the backup location for the site on my PC I found a few Header.Php files for the site. I’m not sure which one is the right one so will post each one. This is the Header.Php file in the following sub-directory for the site wp-content/themes/twentyten

    <?php
    /**
     * The Header for our theme.
     *
     * Displays all of the <head> section and everything up till <div id="main">
     *
     * @package WordPress
     * @subpackage Twenty_Ten
     * @since Twenty Ten 1.0
     */
    ?><!DOCTYPE html>
    <html <?php language_attributes(); ?>>
    <head>
    <meta charset="<?php bloginfo( 'charset' ); ?>" />
    <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', 'twentyten' ), max( $paged, $page ) );
    
    	?></title>
    <link rel="profile" href="http://gmpg.org/xfn/11" />
    <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
    <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
    <?php
    	/* We add some JavaScript to pages with the comment form
    	 * to support sites with threaded comments (when in use).
    	 */
    	if ( is_singular() && get_option( 'thread_comments' ) )
    		wp_enqueue_script( 'comment-reply' );
    
    	/* Always have wp_head() just before the closing </head>
    	 * tag of your theme, or you will break many plugins, which
    	 * generally use this hook to add elements to <head> such
    	 * as styles, scripts, and meta tags.
    	 */
    	wp_head();
    ?>
    </head>
    
    <body <?php body_class(); ?>>
    <div id="wrapper" class="hfeed">
    	<div id="header">
    		<div id="masthead">
    			<div id="branding" role="banner">
    				<?php $heading_tag = ( is_home() || is_front_page() ) ? 'h1' : 'div'; ?>
    				<<?php echo $heading_tag; ?> id="site-title">
    					<span>
    						<a>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
    					</span>
    				</<?php echo $heading_tag; ?>>
    				<div id="site-description"><?php bloginfo( 'description' ); ?></div>
    
    				<?php
    					// Compatibility with versions of WordPress prior to 3.4.
    					if ( function_exists( 'get_custom_header' ) ) {
    						// We need to figure out what the minimum width should be for our featured image.
    						// This result would be the suggested width if the theme were to implement flexible widths.
    						$header_image_width = get_theme_support( 'custom-header', 'width' );
    					} else {
    						$header_image_width = HEADER_IMAGE_WIDTH;
    					}
    
    					// Check if this is a post or page, if it has a thumbnail, and if it's a big one
    					if ( is_singular() && current_theme_supports( 'post-thumbnails' ) &&
    							has_post_thumbnail( $post->ID ) &&
    							( /* $src, $width, $height */ $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'post-thumbnail' ) ) &&
    							$image[1] >= $header_image_width ) :
    						// Houston, we have a new header image!
    						echo get_the_post_thumbnail( $post->ID );
    					elseif ( get_header_image() ) :
    						// Compatibility with versions of WordPress prior to 3.4.
    						if ( function_exists( 'get_custom_header' ) ) {
    							$header_image_width  = get_custom_header()->width;
    							$header_image_height = get_custom_header()->height;
    						} else {
    							$header_image_width  = HEADER_IMAGE_WIDTH;
    							$header_image_height = HEADER_IMAGE_HEIGHT;
    						}
    					?>
    						<img src="<?php header_image(); ?>" width="<?php echo $header_image_width; ?>" height="<?php echo $header_image_height; ?>" alt="" />
    					<?php endif; ?>
    			</div><!-- #branding -->
    
    			<div id="access" role="navigation">
    			  <?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff */ ?>
    				<div class="skip-link screen-reader-text"><a href="#content">"><?php _e( 'Skip to content', 'twentyten' ); ?></a></div>
    				<?php /* Our navigation menu. If one isn't filled out, wp_nav_menu falls back to wp_page_menu. The menu assiged to the primary position is the one used. If none is assigned, the menu with the lowest ID is used. */ ?>
    				<?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary' ) ); ?>
    			</div><!-- #access -->
    		</div><!-- #masthead -->
    	</div><!-- #header -->
    
    	<div id="main">

    [Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]

    Thread Starter msdlawaz

    (@msdlawaz)

    Header.Php full code for wp-content/themes/twentyeleven

    <?php
    /**
    * Header template for the theme
    *
    * Displays all of the <head> section and everything up till <div id="main">.
    *
    * @package WordPress
    * @subpackage Twenty_Eleven
    * @since Twenty Eleven 1.0
    */
    ?><!DOCTYPE html>
    <!--[if IE 6]>
    <html id="ie6" <?php language_attributes(); ?>>
    <![endif]-->
    <!--[if IE 7]>
    <html id="ie7" <?php language_attributes(); ?>>
    <![endif]-->
    <!--[if IE 8]>
    <html id="ie8" <?php language_attributes(); ?>>
    <![endif]-->
    <!--[if !(IE 6) | !(IE 7) | !(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', 'twentyeleven' ), max( $paged, $page ) );
    
    ?></title>
    <link rel="profile" href="http://gmpg.org/xfn/11" />
    <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
    <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
    /*
    * We add some JavaScript to pages with the comment form
    * to support sites with threaded comments (when in use).
    */
    if ( is_singular() && get_option( 'thread_comments' ) )
    wp_enqueue_script( 'comment-reply' );
    
    /*
    * Always have wp_head() just before the closing </head>
    * tag of your theme, or you will break many plugins, which
    * generally use this hook to add elements to <head> such
    * as styles, scripts, and meta tags.
    */
    wp_head();
    ?>
    </head>
    
    <body <?php body_class(); ?>>
    <div id="page" class="hfeed">
    <header id="branding" role="banner">
    <hgroup>
    <h1 id="site-title"><span>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></span></h1>
    <h2 id="site-description"><?php bloginfo( 'description' ); ?></h2>
    </hgroup>
    
    <?php
    // Check to see if the header image has been removed
    $header_image = get_header_image();
    if ( $header_image ) :
    // Compatibility with versions of WordPress prior to 3.4.
    if ( function_exists( 'get_custom_header' ) ) {
    /*
    * We need to figure out what the minimum width should be for our featured image.
    * This result would be the suggested width if the theme were to implement flexible widths.
    */
    $header_image_width = get_theme_support( 'custom-header', 'width' );
    } else {
    $header_image_width = HEADER_IMAGE_WIDTH;
    }
    ?>
    ">
    <?php
    /*
    * The header image.
    * Check if this is a post or page, if it has a thumbnail, and if it's a big one
    */
    if ( is_singular() && has_post_thumbnail( $post->ID ) &&
    ( /* $src, $width, $height */ $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), array( $header_image_width, $header_image_width ) ) ) &&
    $image[1] >= $header_image_width ) :
    // Houston, we have a new header image!
    echo get_the_post_thumbnail( $post->ID, 'post-thumbnail' );
    else :
    // Compatibility with versions of WordPress prior to 3.4.
    if ( function_exists( 'get_custom_header' ) ) {
    $header_image_width = get_custom_header()->width;
    $header_image_height = get_custom_header()->height;
    } else {
    $header_image_width = HEADER_IMAGE_WIDTH;
    $header_image_height = HEADER_IMAGE_HEIGHT;
    }
    ?>
    <img src="<?php header_image(); ?>" width="<?php echo $header_image_width; ?>" height="<?php echo $header_image_height; ?>" alt="" />
    <?php endif; // end check for featured image or standard header ?>
    
    <?php endif; // end check for removed header image ?>
    
    <?php
    // Has the text been hidden?
    if ( 'blank' == get_header_textcolor() ) :
    ?>
    <div class="only-search<?php if ( $header_image ) : ?> with-image<?php endif; ?>">
    <?php get_search_form(); ?>
    </div>
    <?php
    else :
    ?>
    <?php get_search_form(); ?>
    <?php endif; ?>
    
    <nav id="access" role="navigation">
    <h3 class="assistive-text"><?php _e( 'Main menu', 'twentyeleven' ); ?></h3>
    <?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff. */ ?>
    <div class="skip-link">"><?php _e( 'Skip to primary content', 'twentyeleven' ); ?></div>
    <div class="skip-link">"><?php _e( 'Skip to secondary content', 'twentyeleven' ); ?></div>
    <?php /* Our navigation menu. If one isn't filled out, wp_nav_menu falls back to wp_page_menu. The menu assigned to the primary location is the one used. If one isn't assigned, the menu with the lowest ID is used. */ ?>
    <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
    </nav><!-- #access -->
    </header><!-- #branding -->
    
    <div id="main">

    [Moderator Note: Please post code or markup between backticks or use the code button. Or better still – use a pastebin. Your posted code may has now been permanently damaged by the forum’s parser.]

    both header files are from the unedited default themes.

    try to find a header.php in a directory folder with:

    /wp-content/themes/put/

    somebody with full access to your site (administrator access to the WordPress dashboard; and possibly FTP access to your server) should be able to search the files and find the right location to edit the facebook link;
    consider to post a job at http://jobs.wordpress.net/

    Thread Starter msdlawaz

    (@msdlawaz)

    Alright thanks for the tip – currently I’m away from the PC with the backed up files but as soon as I return to the PC I’ll locate the header.php file in the directory you mentioned, copy/paste the code and post it here.

    Thread Starter msdlawaz

    (@msdlawaz)

    Okay I found a header file in /wp-content/themes/put here is the full code:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html <?php language_attributes(); ?>>
    <head>
    <meta charset="<?php bloginfo( 'charset' ); ?>" />
    <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', 'twentyten' ), max( $paged, $page ) );
    
    	?>
    </title>
    <link href="<?php bloginfo( 'stylesheet_url' ); ?>" rel="stylesheet" type="text/css" />
    
    <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/themes/default/default.css" type="text/css" media="screen" />
    <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/css/nivo-slider.css" type="text/css" media="screen" />
    <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/css/style.css" type="text/css" media="screen" />
    
    <?php
    
    	if ( is_singular() && get_option( 'thread_comments' ) )
    		wp_enqueue_script( 'comment-reply' );
    
    	wp_head();
    ?>
    <script language="javascript" type="text/javascript">
    	function submitnreleetr() { 
    
    			 var emailExp = /^[\w\-\.\+]+\@[a-zA-Z0-9\.\-]+\.[a-zA-z0-9]{2,4}$/;
    	         var msg="";
    		     var msg1="Enter the following mandatory fields:-\n";
    
    		 if(document.frm.email.value==''){
    			msg += "please enter email address\n";
    		}
    		if(document.frm.email.value!='') {
    			if(!document.frm.email.value.match(emailExp)){
    				msg += "please enter correct email address\n";
    			}
    		}
    
    		 if(document.frm.firstname.value==''){
    			msg += "please enter first name\n";
    		 }
    
    		if(document.frm.lastname.value==''){
    			msg += "please enter last name\n";
    		}
    
    		if(msg != "") {
    
    			 msg1 +=msg;
    
                  alert(msg1);
    
                  return false;
    
    		} else{
    			return true;
    
    			}
    
    		}
    </script>
    
    </head>
    
    <?
    	if(isset($_GET['lang']) && ($_GET['lang']=='es')){
    		 $contact='Póngase en contacto con un abogado';
    		 $fname='Nombre';
    		 $lname='Apellido';
    		 $phone='Teléfono';
    		 $comments='Comentarios';
    		 $email='E-mail';
    		}else{
    		 $contact ='Contact An Attorney';
    		 $email='Email';
    		 $fname='First Name';
    		 $lname='Last Name';
    		 $phone='Phone';
    		 $comments='Comments';
    
    		}
    
     if(isset($_POST['submit'])):
    		$fname2=$_REQUEST['firstname'];
    		$lname2=$_REQUEST['lastname'];
    		$phone2=$_REQUEST['phone'];
    		$commn2t=$_REQUEST['message'];
    		$email1=$_REQUEST['email'];
         $to = "monika@msdlawaz.com";
    	 $subject = "Contact An Attorney";
    
    	$headers  = "From:".$fname2.' '.$lname2."<".$email1.">\n";
    	$headers  .= "MIME-Version: 1.0\r\n";
    	$headers .= "Content-Type: text/html; charset=iso-8859-1\r\n";
    
     $message2 = '<!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">
        <head></head>
        <body>
        <table width="774"  cellspacing="0" cellpadding="0"  border="0">
    
    	 <tr>
        <td width="185">Email</td>
        <td>'.$email1.'</td>
      </tr>
      <tr>
        <td>First Name</td>
        <td width="185">'.$fname2.'</td>
      </tr>
      <tr>
        <td>Last Name</td>
        <td>'.$lname2.'</td>
      </tr>
      <tr>
        <td>Phone</td>
        <td>'.$phone2.'</td>
      </tr>
       <tr>
        <td valign="top">Message</td>
        <td>'.$commn2t.'</td>
      </tr>
    
      </table>
      </body>
       </html>';
    
    	   if(mail($to,$subject,$message2,$headers)){
             $msg="sent";
    		 unset($_POST);	
    
    		 ?>
             <script language="javascript">
    
    			   alert("Thank you for filling contact form. We will contact you soon.");
    
    			    window.location = "http://msdlawaz.com/";
    
                </script>
    
              <?
    	   }
    endif;
    function strleft($s1, $s2) { return substr($s1, 0, strpos($s1, $s2)); }
    function truncate_str($str, $maxlen) {
    if ( strlen($str) <= $maxlen ) return $str;
    
    $newstr = substr($str, 0, $maxlen);
    if ( substr($newstr,-1,1) != ' ' ) $newstr = substr($newstr, 0, strrpos($newstr, " "));
    
    $r=$newstr.'...';
    
    return $r;
    }
    function getpageid($pageid){
    
    $s = empty($_SERVER["HTTPS"]) ? '' : ($_SERVER["HTTPS"] == "on") ? "s" : "";
    $protocol = strleft(strtolower($_SERVER["SERVER_PROTOCOL"]), "/").$s;
    return $protocol."://".$_SERVER['SERVER_NAME'].'/?page_id='.$pageid;
     } 
    
     ?>
    
    <body>
    
    <div id="wrapper">
    <div id="header-bg">
    <div class="container">
    <div class="menu">
    <?php wp_nav_menu( array( 'container_class' => 'menu', 'theme_location' => 'primary','echo'=>true ,'exclude'=>'78,229,227,6,8')); ?>
      <!--
    <ul>
        <li class="active"> <a href="index.htdml"><span>Home</span></a>
    
    <li><a href="#"><span>Attorney</span></a></li>
    <li><a href="#"><span>Services</span></a></li>
    <li><a href="#"><span>Immigration Law</span></a></li>
    <li><a href="#"><span>Criminal Law</span></a></li>
    <li><a href="#"><span>Blog</span></a></li>
    <li><a href="#"><span>Request Consultation</span></a></li>
    <li><a href="#"><span>Resources</span></a></li>
    <li><a href="#"><span>Map</span></a></li>
    </ul>
    -->
    </div>
    
    <div class="lang">
    
      <?php if ( ! dynamic_sidebar( 'primary-widget-area' ) ) : dynamic_sidebar( 'primary-widget-area' ); endif; ?>
    <?php /*?>
    <li><a href=""><img src="<? bloginfo('template_url')?>/images/en-flag.jpg" width="32" height="32" border="0"  /></a></li>
    <li><a href="#"><img src="<? bloginfo('template_url')?>/images/spanish.jpg" width="32" height="32" border="0" /></a></li>
    <?php */?>
    
    </div>
    <div class="clear"></div>
    <div class="logo"> <a href="#"><img src="<? bloginfo('template_url')?>/images/sud-devaraj-logo.png" width="493" height="112" border="0" /></a></div>
    <div class="address">
      <p>141 E Palm Lane, Suite 100,
        Phoenix, AZ  85004
        <span>Ph: (602) 234-0782</span></p>
    
    <ul>
    <li><a href="/DREAM-MEMO.pdf"><img src="<? bloginfo('template_url')?>/images/pdf.png" width="35" height="35" border="0" /></a></li>
    <li><a href="http://www.avvo.com/attorneys/85012-az-monika-suddevaraj-405594.html"><img src="<? bloginfo('template_url')?>/images/star.png" width="35" height="35" border="0" /></a></li>
    <li><a href="http://www.facebook.com/pages/Msdlawaz/149124241878625"><img src="<? bloginfo('template_url')?>/images/fb.png" width="35" height="35" border="0" /></a></li>
    <li><a href="http://www.linkedin.com/in/msdlawaz"><img src="<? bloginfo('template_url')?>/images/in.png" width="35" height="35" border="0" /></a></li>
    </ul>
    </div>
    <div class="clear"></div>
    <div class="banner-part">
      <div class="banner">
       <div class="slider-wrapper theme-default">
        <div class="ribbon"></div>
        <div id="slider" class="nivoSlider"> 
    
       <?               $slider_images = glob(get_theme_root() . '/' . get_template().'/images_' . get_option('theme_colour','brown') . '/banner/*');
                        $banner_image = 1;
                        foreach($slider_images as $image){   
    
                        if(basename($image)!='Thumbs.db'){?> 
    
                        <img src="<?php echo get_bloginfo('template_directory') . '/images_' . ((get_settings('theme_colour'))?get_settings('theme_colour'):'brown') . '/banner/'.basename($image);?>" border="0"   alt="<?php echo basename($image);?>" width="655" height="325" />
    
                        <?php $banner_image++;
                        }
    
    					}?>
                        </div></div>
                        <script type="text/javascript" src="<? bloginfo('template_url')?>/js/jquery-1.6.1.min.js"></script>
    <script type="text/javascript" src="<? bloginfo('template_url')?>/js/jquery.nivo.slider.pack.js"></script>
    <script type="text/javascript">
        $(window).load(function() {
            $('#slider').nivoSlider({
    			  pauseTime: 5000
    			});
        });
        </script>
    
     <?php /*?> <img src="<? bloginfo('template_url')?>/images/banner-1.jpg" width="655" height="325" /><?php */?>
    
      </div>
      <div class="form">
      <h1><?=$contact ;?></h1>
      <form action="" method="post"  name="frm" class="validate" onSubmit="return submitnreleetr();">
    
    <ul>
    <li>
            <p><?=$email?>*:</p>
            <input name="email" type="text" class="textfild" />
          </li>
    <li>
            <p><?=$fname?>:*</p>
            <input name="firstname" type="text" class="textfild" />
          </li>
    <li>
            <p><?=$lname?>:*</p>
            <input name="lastname" type="text" class="textfild" />
          </li>
    <li>
            <p><?=$phone?>:</p>
            <input name="phone" type="text" class="textfild" />
          </li>
    <li>
            <p><?=$comments?>:</p>
    
            <textarea name="message" cols="30" rows="3" class="textfild2" id="textarea"></textarea>
          </li>
    </ul>
        <input type="submit" class="submitbutton"  value="" name="submit"/>
        </div>
      </form>
    </div>
    <div class="clear"></div>

    [Moderator Note: Please post code or markup between backticks or use the code button. Or better still – use a pastebin. Your posted code may now have been permanently damaged by the forum’s parser.]

    Thread Starter msdlawaz

    (@msdlawaz)

    This looks to be the file that needs editing. So do I manually edit the file on the PC and then re-upload it? How do I upload it/where I do upload it to? It’s obviously not a Media file. In WordPress Dashboard for this site if I edit the file manually how do I add it to the site? I want to ensure it is uploaded properly in the correct place. Since this is part of a theme I’m obviously not uploading the file within a specific webpage or blog post, and it is not being uploaded as a Media file. I’ll fix it locally just need to know afterwards how to re-add it to the website. Also thanks for the tip on submitting jobs to WordPress I’ll keep that mind if I run into further challenges.

    Thread Starter msdlawaz

    (@msdlawaz)

    Alright I figured it out thanks for the help. I just edited the file on my PC (from the site backup) and re-uploaded it via FTP.

Viewing 13 replies - 1 through 13 (of 13 total)
  • The topic ‘Question About Fixing A Link In Theme’ is closed to new replies.