3stripe
Forum Replies Created
-
Forum: Plugins
In reply to: NEW PLUGIN – Custom Field GUIQuestion: What if you only want the custom fields created by this plugin to show when posting to a particular category?
So if I were to select a different category for my post, you wouldn’t see the custom fields any longer…
Forum: Everything else WordPress
In reply to: Changing the form text on password protected entriesI’ve followed these instructions and created a functions.php file in my template with the change_pw_text($content) function…
It doesn’t seem to have any effect though? Am I missing something else?
Forum: Themes and Templates
In reply to: Can I edit the text in footerCould be a nice plugin? Would need to hide the specified page so that it didn’t appear in any site maps etc though?
Forum: Themes and Templates
In reply to: Can I edit the text in footerI’ve just had this exact request from a client.
You should {really} be able to edit the footer text without touching php files, it would be nice anyhow!
I’m going to try and do this somehow by making a page called ‘Footer’ and hiding it in the navigation and site map, and then including it on each page. Hmmmf. Shouldn’t be so hard
Forum: Plugins
In reply to: Include PXSmail form directly in template?Still stuck with this and really need to work out a solution… hmmm
Forum: Plugins
In reply to: upload file management admin tool?+1 for this plugin.
Forum: Plugins
In reply to: Include PXSmail form directly in template?Anyone? It’s been quiet around here lately 🙁
Forum: Fixing WordPress
In reply to: <!–more–> tag positionFolks,
I’d like to achieve exactly this, using the WYSIWYG editor… but the “more” link keeps appearing on it’s own line (it’s being added inside tags from the looks of things)
So, the desired end result is:
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt. [More...]
{new parapraph}
Equal blame, toil and pain, etc.But I keep ending up with:
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt.
{new parapraph}
[More...]
Equal blame, toil and pain, etc.Forum: Plugins
In reply to: ‘Write post’ – split ‘Post’ textarea into 2 columns?What if I paid someone?
Forum: Fixing WordPress
In reply to: Image not displayedWhat’s the url of your blog…
If you put this url + (/img/ftllogo1.jpg) into your browser, does the image load?
Forum: Installing WordPress
In reply to: How to block IP addresses of comment spammers?I would highly recommend downloading the Askimet plugin from http://akismet.com/
It should catch 99.9999999999999% of your spam comments for you!
Forum: Fixing WordPress
In reply to: Adding custom fields and date features for gig postsI had to do this same thing for an events page on my site, and I gave up eventually. You’d think there would be a plugin to do the job though…
Forum: Fixing WordPress
In reply to: Adding custom fields and date features for gig postsSome of the event plugins at http://codex.wordpress.org/Plugins/Calendar_Event might help you with this…
Forum: Fixing WordPress
In reply to: Where can I find the Loop?The loop is all around you. Feel the loop.
Ok sorry, erm seriously, the loop might look something like this in it’s basic form:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="post">
<h2><?php the_title() ?></h2>
<?php the_date() ?>
<?php the_content() ?>
</div>
<?php endwhile; else: ?>
Sorry, no posts could be found to match your criteria.
<?php endif; ?>The line to look for is “<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>” which always marks the start of the loop.
What theme are you using? The default theme should have the loop in the index file…
For a more eloquent description of the loop, try http://mattread.com/archives/2005/04/wordpress-is-not-php/
Forum: Plugins
In reply to: Plugin Hooks edit_form_advanced — Display above Save/Publish Buttons?Yup!