shanest
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How do I display these custom fields?Yea, I had similar code to that for displaying a specific volume/issue combination. I would prefer if there was a way to make the query such that it will automatically query for a volume/issue but that it could work for any one. This way I wouldn’t have to make a new query every time we publish a new Issue.
Forum: Fixing WordPress
In reply to: Allow users to write but not publish (hidden categories?)nevermind- found answer
Forum: Everything else WordPress
In reply to: wp_get_links not workingnevermind
Forum: Fixing WordPress
In reply to: 1.5 Admin ProblemsThanks that worked and I appreciate all the help you given me, I’m pretty new to WordPress.
Forum: Fixing WordPress
In reply to: 1.5 Admin ProblemsYes to both
Forum: Themes and Templates
In reply to: Using wp-blog-header.php on other pagesI never got my links (similary idea) to work by including wp-blog-header.php, so I instead included /wp-includes/wp-l10n.php, the file that actually has the links function in it.
Forum: Your WordPress
In reply to: Help installing my new theme – parse errorIt was just a : that shouldn’t have been there, sorry for the trouble.
Forum: Your WordPress
In reply to: Help installing my new theme – parse errorUpdated index.php returns identical parse error except on line 24. Also, whenever I try and just delete the bottom include, the error shifts up to the line above.
<?php include “header.php”; ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class=”headline”>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></div>
<div class=”subheadline”>Posted to <?php the_category(‘, ‘) ?> at <?php the_time(‘g:i A’) ?> on <? the_date(); ?></div><div class=”story”>
<?php the_content(‘Read the rest of this entry »’); ?>
</div>
<div class=”storyfoot”>
<?
$forum = mysql_query(“SELECT * FROM wp_categories WHEN ID=the_category_ID();”);
$forum_id = mysql_fetch_array($forum);
?>
Discuss in “><? the_category_unicode(); ?> Forum
</div>
<?php endwhile; ?>
<?php include “searchform.php”; ?>
<?php include “footer.php”; ?>Forum: Everything else WordPress
In reply to: Implementing with ForumsYep, found that out from more than one person. I’m changing the name with my new template though.
Back to the topic though.Forum: Themes and Templates
In reply to: Help with CSS MenuOk, now I have it so that they all show up spaced out, but more weird problems are happening. The first li doesn’t show up all the way to the left, so the links are not centered. There’s also a huge gap below the ul even though there are no margins. Also, the rollover only applies to the a area… how do I get it to apply to the whole li?
Forum: Fixing WordPress
In reply to: Editing DB InfoI almost have it working. However, I need to change the site URL to get links working properly. The problem is that I changed it in the database, but it still links to my old website. How do I get it to link to the new URL?
Forum: Fixing WordPress
In reply to: Errors just popped upOk, I replaced that file with the default, and now this error is popping up:
Fatal error: Call to undefined function: is_404() in /home/shanest/public_html/blog/wp-blog-header.php on line 111
I don’t want to replace wp-blog-header.php either, do I? What’s going on here with the functions and everything?Forum: Themes and Templates
In reply to: Why isn’t this validating?https://shanest.com is just a domain that redirects to my raw site at https://inthechains.com/shanest/wordpress/ , the URL in question for validation.
Forum: Everything else WordPress
In reply to: Front page ideaIf I floated all the div sections for the entire post to the left, and made it so that only three could fit in the width of the content area, wouldn’t the subsequent posts be sent below the other ones, also in a column? It seems too simple, so is it?
Forum: Fixing WordPress
In reply to: HELP Site Crash with Static PagesOk, it’s working. But, how can I get static pages to work while maintaing my current .htaccess settings that rewrite my permalinks?