mythaimedia
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 2 Side BarsDoes this dynamically create an area in the widget section to allow you to put different widgets on different sidebars?
Forum: Fixing WordPress
In reply to: 2 Side BarsI would prefer to use a 2 column theme but have two sidebars to put widgets in. One for guest and one for members. That possible? I would assume so since php can do just about anything.
Forum: Themes and Templates
In reply to: ModXBlog theme problemFYI, I deleted everything in the comments.php page and uploaded it. Granted I can’t post comments but it fixed the distorted issue. Now I suppose i need to work backwards. Anyone have a quicker fix?
Forum: Themes and Templates
In reply to: ModXBlog theme problemDid anyone find a fix for this theme yet? I have the same issue. Logged in shows the post just fine but loggout and the post is distorted. What was the comments.php fix if you don’t mind me asking?
Forum: Fixing WordPress
In reply to: intro.phpThanks but where would I put that line? I tried the top but it distorted it and i tried under the header but still look bad. Below is my index.php page:
<?php get_header(); ?>
<div id=”container”>
<div id=”content”><?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div <?php post_class() ?> id=”post-<?php the_ID(); ?>”>
<h1>” rel=”bookmark” title=”<?php _e(‘Permanent Link to’, ‘default’); ?> <?php the_title_attribute(); ?>”><?php the_title(); ?></h1>
<small class=”meta clearfix”>
<span class=”alignleft”>
<?php the_date(”) ?> <!– by <?php the_author() ?> –> <?php edit_post_link(__( ‘Edit’, ‘default’ ), ‘ | ‘, ”); ?>
</span>
Purchase »
</small><div class=”entry”>
<?php the_content((__( ‘» Read more: ‘, ‘default’)) . the_title(”, ”, false)); ?>
</div><div class=”postmetadata clearfix”>
<p class=”commentslink alignright”>
” rel=”nofollow”><?php comments_number( __( ‘No comments’, ‘default’ ), __( ‘1 comment’, ‘default’ ), __( ‘% comments’, ‘default’ )); ?> »
</p>
<p class=”categories”>
<?php _e( ‘Posted in ‘, ‘default’ ); the_category(‘, ‘); ?>
</p>
<?php the_tags( ‘<p class=”tags”>Tags: ‘, ‘ ‘, ‘</p>’); ?>
</div>
</div><?php endwhile; ?>
<div class=”pagination navigation clearfix”>
<?php if(function_exists(‘wp_pagenavi’)) { wp_pagenavi(); } else { ?>
<div class=”alignleft”><?php next_posts_link(__(‘« Older Entries’, ‘default’)) ?></div>
<div class=”alignright”><?php previous_posts_link(__(‘Newer Entries »’, ‘default’)) ?></div>
<?php } ?>
</div><?php else : ?>
<?php include (TEMPLATEPATH . “/missing.php”); ?>
<?php endif; ?>
</div><!– #content –>
</div><!– #container –><?php get_sidebar(); ?>
<?php get_footer(); ?>Forum: Fixing WordPress
In reply to: Modules won’t move in 2.8anyone, anyone… Bueler?
Forum: Fixing WordPress
In reply to: [Plugin: Contact Form 7] Not send all the dataI’m not sure I understand where to put those. If this is my code below, where would I put your suggestion?
<p>Website (required)
[text your-website] </p><p>Your Issue
[textarea your-message] </p>Forum: Plugins
In reply to: Plugins wanted!Buddypress will soon have a version for WordPress but currenlty only Buddypress will work on the MU version of WordPress. Stay tuned…
Forum: Everything else WordPress
In reply to: The Future – WordPress and BuddypressThere will be a version of Buddypress that will sit on top of WordPress but currently BuddyPress only works for the MU version of WordPress.
Forum: Fixing WordPress
In reply to: Can’t see comment area on PageFound the fix: I added this to page.php
<?php comments_template(); ?>
<?php comments_popup_link(‘Comment’, ‘1 Comment’, ‘% Comments’); ?>Forum: Fixing WordPress
In reply to: Tags not showingThis is my index page of my theme:
<?php get_header(); ?>
<div id=”wrapper”>
<div id=”content-wrapper”>
<div id=”content”><?php if (have_posts()) : while (have_posts()) : the_post();
if( $post->ID == $do_not_duplicate ) continue; update_post_caches($posts); ?><?php // check for thumbnail
$thumb = get_post_meta($post->ID, ‘Thumbnail’, $single = true);
// check for thumbnail class
$thumb_class = get_post_meta($post->ID, ‘Thumbnail Class’, $single = true);
// check for thumbnail alt text
$thumb_alt = get_post_meta($post->ID, ‘Thumbnail Alt’, $single = true);
?>
<div class=”post-wrapper”><div class=”post”>
<div class=”homepost-left”>
<div class=”thumbnailwrap”>
<?php // if there’s a thumbnail
if($thumb !== ”) { ?><img src=”<?php echo $thumb; ?>”
class=”thumbnail-home” width=”94px” height=”94px”
alt=”<?php if($thumb_alt !== ”) { echo $thumb_alt; } else { echo the_title(); } ?>”
/><?php } // end if statement
// if there’s not a thumbnail
else { echo ”; } ?>
</div>
<?php Show_Dropdown(); ?>
</div><div class=”homepost-right”>
<span class=”titles”>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></span>
<?php the_content_limit(300, “”); ?>
</div></div>
</div>
<?php comments_template(); ?>
<?php endwhile; ?>
<p class=”pagination”><?php next_posts_link(‘« Previous Entries’) ?> <?php previous_posts_link(‘Next Entries »’) ?></p>
<?php else : ?>
<h2 >No Results Found</h2>
<p>Sorry, your search returned zero results. </p>
<?php endif; ?></div>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?></body>
</html>Forum: Fixing WordPress
In reply to: Tags not showingWell, I thought that might be it so I copied the tag code and put it in my /themes/themename/index.php file and still get NO tags at the end of the post even though I have tags. Here is the code I put:
<?php the_tags(‘Tags: ‘, ‘, ‘, ‘
‘); ?>Forum: Fixing WordPress
In reply to: Blog Feed on my siteNevermind. Found this. Put it in the sidebar
<?php require_once(ABSPATH . WPINC . '/rss-functions.php'); echo ' <ol>'; get_rss('https://www.datingscripts.biz/feed/', $num = 8); echo '</ol> '; ?>