webguync
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: different headers per page with TwentyEleven child themeI see thanks!
Forum: Fixing WordPress
In reply to: Google Ads not displaying correctlyok, guess I didn’t look at the width code very closely. Duh!
thanks
Forum: Fixing WordPress
In reply to: adding number of views to blog postI am using a child theme of twentyten. I believe I have found what I need with loop.php. Thanks!
Forum: Fixing WordPress
In reply to: adding number of views to blog postok, I activated the plugin and I see where it works when I go into a post to comment. I was hoping to have it display on the initial viewing of your blog where all of the post are where the author information is below the post title. I tried the code in page.php as below, but don’t see where it is working.
<?php if ( is_front_page() ) { ?>
<h2 class=”entry-title”><?php the_title(); ?></h2>
<div>Total views <?php echo_post_views(get_the_ID());?> </div>Forum: Fixing WordPress
In reply to: adding number of views to blog postyes, it’s supposed to display the blog views.
Forum: Fixing WordPress
In reply to: adding number of views to blog postcouldn’t I just take out the offending code?
Forum: Fixing WordPress
In reply to: adding number of views to blog postjust an update to this. I noticed that when you try to make a commment on a blog post, the following error is displayed.
Fatal error: Call to undefined function echo_post_views() in /nfs/c08/h01/mnt/118256/domains/inspired-evolution.com/html/blog/wp-content/themes/Inspired-Evolution/single.php on line 17
where would I need to define the function at? Also, I think single.php must be the wrong file to post this code in b/c I only want the page views to display below the blog post title.
Forum: Fixing WordPress
In reply to: adding number of views to blog postthanks, I tried that, but still not displaying. Maybe I am putting the code in the wrong place?
Forum: Fixing WordPress
In reply to: adding number of views to blog postI did, maybe I have it in the wrong lace. Here is where it currently lies.
<div id="content" role="main"> <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?> <div id="nav-above" class="navigation"> <div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'twentyten' ) . '</span> %title' ); ?></div> <div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '→', 'Next post link', 'twentyten' ) . '</span>' ); ?></div> </div><!-- #nav-above --> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <h1 class="entry-title"><?php the_title(); ?></h1> <div id="Blog_Views"> echo_post_views(get_the_ID()); </div>
Forum: Fixing WordPress
In reply to: adding number of views to blog postso, I downloaded the post-views plugin and the read-me file says to place the following code after <php if ( have_post() ) while ( have_post() ) : the_post();?>
echo_post_views(get_the_ID());
I did that, but don’t see any thing on my blog. I wanted it to show up next to the blog author picture id, and posted ondate: by:author_name
any ideas?
Forum: Fixing WordPress
In reply to: adding HTML to author biook, thanks. I will take a look at that.
Forum: Fixing WordPress
In reply to: adding HTML to author bioan unorganized list
<ul>
with<li>
‘s and images in between the Li’s which link to my social networking sites.[Please post code snippets between backticks or use the code button.]
Forum: Fixing WordPress
In reply to: adding HTML to author biothanks for the help so far. I have my child theme going with the twentyten theme as the parent. Now back to my original post on the author piece.
Forum: Fixing WordPress
In reply to: adding HTML to author biook I found it thanks. Quick question. For my child theme do I alter the css file in twentyten or do I put my alterations in the style sheet of my child theme?
Forum: Fixing WordPress
In reply to: adding HTML to author biothis may be a silly question, but I have always downloaded themes via wp-admin. Where would I go to download the twenty-ten theme?