x9tripboarder16
Forum Replies Created
-
Forum: Plugins
In reply to: E-Commerce Limited Stock ProblemI just updated the install, and I’m still having the same problem. Any other ideas?
Forum: Plugins
In reply to: E-Commerce Grid View Not WorkingI missed changing a line of code to .php5, thanks for the help though.
Forum: Plugins
In reply to: E-mail UsersExactly what I was looking for!!! Thanks!
Forum: Themes and Templates
In reply to: Display Excerpts in TableI figured it out with some help. Define a table whereas you just use the <table> tag. Then put in the following code:
<?php while (have_posts()) :
echo “<tr>\n”;
for ($i = 0; $i < #; $i++) :
the_post();
echo “<td>\n”;
echo $post->post_excerpt;
echo “
\n”;
echo $post->post_title;
echo “</td>\n”;?>
<?php endfor; echo “</tr>\n”; endwhile; echo “</table>\n”; ?>Where the # is the number of columns.
Forum: Fixing WordPress
In reply to: Category Style Messed UpI copied in the stylesheet of another blog that I manage, and I had no luck. I also checked to add in the above code, and it was already there. Another thing that might be of use about the link above, is that the loop for some reason is not functioning. Any ideas?
Forum: Fixing WordPress
In reply to: Password Protect CategoriesThat would work, but I don’t want to remove the links from the side menu. If I have to I will do that. Any other ideas?
Forum: Fixing WordPress
In reply to: File Upload LinksI solved the problem by reverting back to 2.0. I hope the fix the bug in the newer versions.
Forum: Themes and Templates
In reply to: Posts in a table with 3 columnsLivia, is this for wordpress 1.5 or 2.0? I am trying to do the same thing, but am not having luck with your above code. Could you direct me to the source where you learned of the above code?
Thanks in advance!
Forum: Plugins
In reply to: Photopress – where do I add this?The loop is found in the templates files in the archive.php or index.php file, depending on where you want to edit it.
Forum: Fixing WordPress
In reply to: File Upload LinksTo solve this problem would the best idea be to revert back to version 2.0 or upgrade to 2.0.4?
Forum: Fixing WordPress
In reply to: Change filesize limit on uploadYou should be able to upload any file type, I’m uploading word documents and the like.
Forum: Fixing WordPress
In reply to: Post Title PlacementThanks for the help!
Forum: Fixing WordPress
In reply to: Post Title PlacementThe output creates the tag, do you know how to prevent that from happening?
Forum: Fixing WordPress
In reply to: Post Title PlacementWhere would I find output code so I can alter it?
Forum: Fixing WordPress
In reply to: Post Title PlacementThe link was fine, there wasn’t any wrong code.