jonny41891
Forum Replies Created
-
Forum: Plugins
In reply to: [PHPBB Single Sign On] Login issue w/ "PHPBB Single Sign On"I figured out a little patch with the help of a similar post as far as having independent databases (although mine’s is really buggy). I don’t know if the developer of this plugin checks this forum, but if I can run it past him first, then maybe he can give it the ‘ok’ & create a alternate plugin for people using independent databases.
Forum: Fixing WordPress
In reply to: Add twittley or tweetmeme manuallysomeone has to know
Forum: Fixing WordPress
In reply to: Add twittley or tweetmeme manuallyanyone?
Forum: Fixing WordPress
In reply to: move date below excerptyeah and i’m a newbie too!
Forum: Fixing WordPress
In reply to: move date below excerptWOW Thanks Man!, it was actually the one that started at 337. But thank you, you were a big help.
Forum: Fixing WordPress
In reply to: move date below excerptheres my themefunctions.php
[massive block of code deleted – please follow forum guidelines and use https://wordpress.pastebin.ca ]
Forum: Fixing WordPress
In reply to: move date below excerptheres my themefunctions.php <script src=”https://pastebin.com/embed_js.php?i=MYxcfnHp”></script>
Forum: Fixing WordPress
In reply to: move date below excerptheres my functions.php
[Large code excerpt removed by moderator per forum rules. Please use the pastebin for all large code excerpts. It works better anyway.]
Forum: Fixing WordPress
In reply to: move date below excerptI’m sorry but I can’t seem to find where the excerpt part is… here is my code for index.php
<?php get_header(); ?> <div id="container"> <div class="center"> <?php rev_featured(); ?> <div id="body"> <?php rev_loop(); ?> <?php if (is_home() || (previous_post_link() != '' || next_posts_link() != '')) { ?> <div class="page-navigation"> <?php if (function_exists('wp_pagenavi')) { wp_pagenavi(); } else { ?> <div class="alignleft default"><?php previous_posts_link('<span>Newer Entries</span>'); ?></div> <div class="alignright default"><?php next_posts_link('<span>Older Entries</span>'); ?></div> <?php } ?> </div> <?php } ?> </div> <?php get_sidebar('Sidebar'); ?> </div> </div> <?php get_footer(); ?>
and here is my single.php
<?php get_header(); ?> <?php global $options; foreach ($options as $value) { if (get_option( $value['id'] ) === FALSE) { $$value['id'] = $value['std']; } else { $$value['id'] = get_option( $value['id'] ); } } ?> <div id="container"> <div class="center"> <div id="body"> <?php if (have_posts()) { while (have_posts()) { the_post(); ?> <div class="post-wrapper single-post" id="post-<?php the_ID(); ?>"> <?php if (in_array('Thumb', $rev_general)) { rev_thumb('banner'); } ?> <div class="post"> <h1><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1> <?php rev_meta(); ?> <?php the_content(); ?> <?php if (in_array('TinyURL', $rev_general)) { rev_tinyURL(get_permalink($post->ID)); } ?> </div> </div> <?php if (in_array('Social', $rev_general)) { ?> <div id="social-wrapper"> <ul> <li><a href="https://twitthis.com/twit?url=<?php the_permalink(); ?>" title="Tweet about this post"><img src="<?php echo bloginfo('template_directory').'/images/icons/twitter_32.png'; ?>" alt="Tweet about this post" /></a></li> <li><a href="https://www.facebook.com/sharer.php?u=<?php the_permalink(); ?>&t=<?php the_title_rss(); ?>" title="Share this post on Facebook"><img src="<?php echo bloginfo('template_directory').'/images/icons/facebook_32.png'; ?>" alt="Share this post on Facebook" /></a></li> <li><a href="https://www.stumbleupon.com/submit?url=<?php the_permalink(); ?>&title=<?php the_title_rss(); ?>" title="StumbleUpon this post"><img src="<?php echo bloginfo('template_directory').'/images/icons/stumbleupon_32.png'; ?>" alt="StumbleUpon this post" /></a></li> <li><a href="https://digg.com/submit?phase=2?url=<?php the_permalink(); ?>&title=<?php the_title_rss(); ?>" title="Share this post on Digg"><img src="<?php echo bloginfo('template_directory').'/images/icons/digg_32.png'; ?>" alt="Share this post on Digg" /></a></li> <li><a href="<?php echo $com_feedUrl; ?>" title="Subscribe to our feed"><img src="<?php echo bloginfo('template_directory').'/images/icons/rss_32.png'; ?>" alt="Subscribe to our feed" /></a></li> </ul> </div> <?php } if (in_array('Author', $rev_general)) { ?> <div id="author-wrapper"> <h2 class="alt">About the Author – <span><?php the_author(); ?></span></h2> <?php echo get_avatar(get_the_author_meta('user_email'),'80'); ?> <p><?php the_author_posts_link(); ?> has written <?php the_author_posts(); ?> articles on <?php bloginfo('name'); ?>.</p> <p><?php the_author_description(); ?></p> </div> <?php } if (in_array('Related', $rev_general)) { rev_relatedPosts(); } ?> <div id="comments-wrapper"><?php comments_template(); ?></div> <?php } } ?> </div> <?php get_sidebar('Sidebar'); ?> </div> </div> <?php get_footer(); ?>
oh yea and i’m a newbie, thanks in advance
Forum: Fixing WordPress
In reply to: move date below excerptanyone?