Michael Fields
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Disallow selection of more than one category#2 has been completed: http://ww.wp.xz.cn/extend/plugins/category-radio-buttons/
But on second glance, I am uncertain about #1 – could you please clarify perhaps with an example?
Forum: Fixing WordPress
In reply to: Disallow selection of more than one categorychipbennett,
Those are great suggestions. I still have a few work to do on it before I get there… but I’ll see what I can come up with.Forum: Fixing WordPress
In reply to: Change Text Limitthomamon,
I downloaded the theme but the functions.php file is encoded to such an extent that I can’t see which function to have you edit. @solutions from here on out:1. I know you paid for this theme and making edits to the theme will void your warranty killing your ability to get support directly from the author. To avoid this, please use the support section on their site.
2. Please upload the “Unbranded version” which – from what I understand – contains no encrypted code.
Forum: Fixing WordPress
In reply to: </BODY> HTML tagHave you looked in:
/wp-content/themes/your-active-theme/footer.phpForum: Fixing WordPress
In reply to: Disallow selection of more than one categoryI’ve always wanted to do something like this and after seeing your post, I came up with a plugin that changes the check boxes to radio buttons. This small interface change should produce the results you are looking for. Here’s a link:
Forum: Fixing WordPress
In reply to: Change Text Limitthomamon,
Please help us out with the name of your theme + a link to download it. This is a simple fix, but I need to see the code to tell you what to edit.Forum: Fixing WordPress
In reply to: Exclude posts containing a particular tagYou only have to change the array key from
tag__intotag__not_in.$term = get_term_by( 'slug', 'exclude', 'post_tag' ); $args = array( 'tag__not_in' => array( $term->term_id ), 'post_type' => 'post', 'post_status' => 'publish', 'posts_per_page' => -1, 'caller_get_posts'=> 1 );Forum: Themes and Templates
In reply to: The loop , CSS and postsgambuto,
No problem! Glad it worked for you 🙂Forum: Fixing WordPress
In reply to: removing excerpt from single.phpChristian,
No problem, glad I could help you work it out 🙂Forum: Fixing WordPress
In reply to: removing excerpt from single.phptamray,
your template looks fine and is using the_content() to display post content… the thing is that you “excerpt” is a part of the post content and you have used the more tag. Please double check your post. I am positive that this is the case because, when I vied the source of your page, this <span id=”more-37″></span> was in the source.best,
MikeForum: Themes and Templates
In reply to: Events Calendar distorts page…opps, originally replied to the wrong post.
What are you using to create the calendar?
How are you displaying the calendar?
Forum: Themes and Templates
In reply to: Events Calendar distorts pageUm, I would guess that the calendar is being floated and that float is not being cleared. Find the code that adds the calender to the page and immediately after the code add the following line:
<div style="clear:both;"></div>Hope this helps,
-MikeForum: Themes and Templates
In reply to: The loop , CSS and postsSomething like this should work:
<?php if ( have_posts() ) { $post_count = 1; while ( have_posts() ) { the_post(); $class = ' class="post-count-' . $post_count . '"'; $post_count++; print "\n\t" . '<div' . $class . '>'; the_title(); the_content(); print "\n\t" . '</div>'; } } ?>Forum: Fixing WordPress
In reply to: removing excerpt from single.phpHmmm…. That is strange, the excerpt should not be showing up in single.php. If you could post the code from your single.php, I’ll take a look at it. Please paste here: http://wordpress.pastebin.com/
Do you have a plugin installed that would add the excerpt to the the_content filter? …or possibly a custom theme mod?
Have never heard of this happening before 🙂
Forum: Fixing WordPress
In reply to: removing excerpt from single.phpIf you are using the more tag to create the “excerpt” then you might find this solution useful: