Any WP experts about?

5 replies
  • WEB DESIGN
  • |
Hi, Just wondering if any of you could help me with this theme i have selected,
its called "ShortNotes"



I have no idea of to change that standard logo to my own, or even if its editable text.

Any ideas?

the coding for it is below...

(I apologise if this is the wrong section)

Thank You.


<!doctype html>
<!--[if IEMobile 7 ]> <html <?php language_attributes(); ?>class="no-js iem7"> <![endif]-->
<!--[if lt IE 7 ]> <html <?php language_attributes(); ?> class="no-js ie6 oldie"> <![endif]-->
<!--[if IE 7 ]> <html <?php language_attributes(); ?> class="no-js ie7 oldie"> <![endif]-->
<!--[if IE 8 ]> <html <?php language_attributes(); ?> class="no-js ie8 oldie"> <![endif]-->
<!--[if (gte IE 9)|(gt IEMobile 7)|!(IEMobile)|!(IE)]><!--><html <?php language_attributes(); ?> class="no-js"><!--<![endif]-->
<head>
<meta charset="utf-8">
<meta charset="utf-8">
<!--[if ie]><meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible'/><![endif]-->

<title><?php wp_title( ' - ', true, 'right' ); ?> <?php bloginfo('name'); ?></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<?php if ( of_get_option('shortnotes_enablemeta')== '1') { ?>
<!-- meta -->
<meta name="description" content="<?php echo of_get_option('shortnotes_metadescription') ?>">
<meta name="keywords" content="<?php wp_title('' , true, right); ?>, <?php echo of_get_option('shortnotes_metakeywords') ?>" />
<meta name="revisit-after" content="<?php echo of_get_option('shortnotes_revisitafter') ?> days" />
<meta name="author" content="www.site5.com">
<?php } ?>

<?php if ( of_get_option('shortnotes_enablerobot')== '1') { ?>

<!-- robots -->
<meta name="robots" content="<?php echo of_get_option('shortnotes_metabots') ?>" />
<meta name="googlebot" content="<?php echo of_get_option('shortnotes_metagooglebot') ?>" />
<?php } ?>


<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>">

<link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/library/css/normalize.css">

<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>">

<!-- wordpress head functions -->
<?php wp_head(); ?>
<!-- end of wordpress head -->

<?php if(of_get_option('shortnotes_css_code') != '') { ?>
<!-- custom css -->
<?php load_template( get_template_directory() . '/custom.css.php' );?>
<!-- custom css -->
<?php } ?>

<?php if(of_get_option('NICHE TITLE WAS HERE_customtypography') == '1') { ?>
<!-- custom typography-->
<?php if(of_get_option('NICHE TITLE WAS HERE_headingfontlink') != '') { ?>
<?php echo stripslashes(html_entity_decode(of_get_option('NIC HE TITLE WAS HERE_headingfontlink')));?>
<!-- custom typography -->
<?php } ?>
<?php load_template( get_template_directory() . '/custom.typography.css.php' );?>
<?php } ?>
</head>

<body <?php body_class(); ?>>
<!-- begin #mainWrapper -->
<div id="wrapper">
<!-- menu for smaller screens -->
<?php if ( has_nav_menu( 'main_nav' ) ) {?>
<div id="small-screens-menu" class="block">
<a href="#" id="topmenu-button"><strong><?php _e(":::: MENU ::::", "site5framework"); ?></strong></a>
<?php site5_main_nav(); ?>
</div>
<?php }?>
<!-- end menu for smaller screens -->
<!-- begin header -->
<header role="banner" >
<!-- begin .block -->
<div class="block clearfix">
<!-- begin #logo -->
<div id="logo">
<h1>
<a href="<?php echo home_url(); ?>">
<?php if ( of_get_option('shortnotes_clogo')!= '') { ?>
<img src="<?php echo of_get_option('shortnotes_clogo'); ?>" alt="<?php echo bloginfo( 'name' ) ?>" />
<?php } elseif( of_get_option('shortnotes_clogo_text')!= '') {
echo of_get_option('shortnotes_clogo_text');
} else {
bloginfo( 'name' );
}?>
</a>
<span><?php bloginfo('description'); ?></span>
</h1>

</div>
<!-- end #logo -->

</div>
<!-- end .block -->
</header>
<!-- end header -->
#experts
  • Profile picture of the author savidge4
    You should be able to get into the 'DashBoard' and then you are looking for "Theme Options" or the like and then you want to find "General Settings" and the logo setup is "Usually" in that location
    Signature
    Success is an ACT not an idea
    {{ DiscussionBoard.errors[9635015].message }}
  • Profile picture of the author spondoolies
    Hi, thanks for the response

    Idk if it matters, but the theme isnt a WordPress standard theme? It was downloaded from somewhere else, so idk, would it be be incorporated into the general settings of wordpress?
    {{ DiscussionBoard.errors[9635034].message }}
  • Profile picture of the author jimvol
    Hello, I am going to suggest going back to a standard WP theme unless you are going to go with a premium theme like Genesis frame plus supported theme.

    The standard WP themes are pretty good and are the best of the free. I personally like 2012.

    Thanks!

    Jeremiah
    {{ DiscussionBoard.errors[9635043].message }}
    • Profile picture of the author Zenoth
      The logo is displayed by this code:

      PHP Code:
      <a href="<?php echo home_url(); ?>">
      <?php if ( of_get_option('shortnotes_clogo')!= '') { ?>
      <img src="<?php echo of_get_option('shortnotes_clogo'); ?>" alt="<?php echo bloginfo'name' ?>" />
      <?php } elseif( of_get_option('shortnotes_clogo_text')!= '') {
      echo 
      of_get_option('shortnotes_clogo_text');
      } else {
      bloginfo'name' );
      }
      ?>
      </a>
      Logo is stored in a option field, so theme must have a options page from where you can change it.
      Commonly, you can find theme options page under Dashboard -> Appearance.
      {{ DiscussionBoard.errors[9635258].message }}
  • Profile picture of the author spondoolies
    Thanks for the reply, I'll check it out after work
    {{ DiscussionBoard.errors[9635588].message }}

Trending Topics