asechrest
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Adding transparent space below menuOpen up your
style.cssfile. Look for the#contentsection. Replacemargin:0;withmargin: 10px 0 0 0;.Look for the
#sidebarsection. Replacemargin:0withmargin: 10px 0 0 0;.See if that works. Once you learn a bit about CSS, consider using the Firefox web browser with a plugin that lets you edit CSS in real time without worry of screwing up the real CSS file. It really helps you understand how the CSS code controls page layout.
Forum: Everything else WordPress
In reply to: Can they (the bloggers) see my email address?If he is the blog owner with admin priveleges and you used your email address when you commented, then he will be able to see it. While he might not publish it publicly, it’s still viewable in the back end.
Forum: Themes and Templates
In reply to: List pages in a categoryYou’ll want to take a look at the query_posts function.
Forum: Fixing WordPress
In reply to: User / Visitor StatisticsForum: Fixing WordPress
In reply to: HELP Warning: sprintf()The wp-member plugin is causing the problem. Log in via FTP or your server’s file management system and delete the wp-member plugin folder from /wp-content/plugins.
You can then attempt to re-download and reinstall the plugin to see if the problem persists. If it does, consider contacting the plugin author to try to solve the issue.
Forum: Fixing WordPress
In reply to: Automaticly adds a more tag on front pageThere are some plugins that automatically limit your posts and insert a more tag. Maybe check your plugins list in the back end to see if any such plugin is activated?
Forum: Fixing WordPress
In reply to: Side menu became all italicsSounds like you may have forgotten to close a tag. Check to be sure that you’ve closed your
<em>or<i>tags in your post or in your coding.Forum: Fixing WordPress
In reply to: Month Archive based DDOS Attack (I think)Way over my head, but good luck to you. Your solution sounds pretty innovative, even if it is sort of a workaround rather than a direct solution. Nice work.
Forum: Fixing WordPress
In reply to: Conditional tag and parse errorDid you change some code in your
functions.phpfile?Forum: Plugins
In reply to: I Cant login to my admin dashboard to edit site [HELP]It looks like an issue associated with the Theme My Login plugin. Use your server’s file manager or the FTP program of your choice to remove the Theme My Login folder from /wp-content/plugins.
Forum: Fixing WordPress
In reply to: Automatically adding text to comment after comment is submittedgreenshady wrote a filter to preset text in the new post/page editor.
I would guess you could use a filter for comments as well. I’m not sure whether it would prefill the textarea or append it to the comment prior to posting, or if a filter could be written to do either/or.
The coding is a bit out of my league. Maybe greenshady will come across this thread. =)
Forum: Fixing WordPress
In reply to: How do I remove the link from a post titleMaybe try using the_title()?
Or are you wanting to cherry-pick the posts within the loop that you choose not to have the title be a link?
Forum: Fixing WordPress
In reply to: Author Page error with display_name and nicknameThere’s some code there in the link that deals with populating the
$curauthvariable. Maybe make sure you’re populating the$curauthvariable correctly before trying to use it.Forum: Fixing WordPress
In reply to: Using the_tags inside a query, getting the_tags as plain text.Have you tried get_the_tags()?
Never used it, but it seems to return an array of tag objects, rather than tag links.
I don’t have time to figure out exactly what you want, but at first glance I thought this might help.
Forum: Fixing WordPress
In reply to: Preventing certain category posts from showing on home pageStrange! There must be a plugin conflict of some sort? I run well over a dozen plugins and ACE works fine for me.
In your index.php, could you simply wrap your post output (within the Loop) in a conditional statement? For example:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <?php if ( !(in_category('catID')) ) { ?> <div> <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <?php the_content(); ?> </div> <?php } ?> <?php endwhile; else: ?>Replace
catIDwith the category ID you want to exclude. I think this might do the trick.