Ryan Fitzer
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Linked PagesForum: Fixing WordPress
In reply to: Linked PagesThe ability to have a post over multiple pages. I’m seeing this at the bottom of one of the sample posts in the theme viewer.
Ex. “Pages 1 2 3”Forum: Plugins
In reply to: Page VisibilityGot it. Just took a little trial and error. Here’s what I’m using(31 being the id of the page I wanted to exclude):
<?php wp_list_pages('exclude=31&sort_column=menu_order&depth=1&title_li='); ?>Thanks for the help HandySolo.
Forum: Plugins
In reply to: Numbered Search ResultsI’ve never used that element before. And here I thought there was some big php answer. Thanks.
Forum: Fixing WordPress
In reply to: HOW DO I FIND A BLANK PAGE TO USE IN WP? (NO BANNER OR SIDEBAR)You need to set up that blank page on your own and put it in your WP directory. When I did something like this (not an RSS page mind you, it was an image gallery with it’s own nav http://chrisjagers.net/wp/?page_id=61 ) I had to set up a mini-site that just had the content I needed. This site had no template from my WP theme in it. It was all manual. Then I simply directed the iframe to it. I’m sure there is a better way though…
Forum: Fixing WordPress
In reply to: HOW DO I FIND A BLANK PAGE TO USE IN WP? (NO BANNER OR SIDEBAR)In the WP admin go to Write > Page and make a new page with whatever title you’d like (News?). Then click on the “html” button on the text editor’s button bar. Put this code in the window that pops up:
<iframe height="200" width="385" src="http://www.your-news-links.com" FRAMEBORDER=0> </iframe>Hit the “update button and save the the page.
This worked for me. Also, I found I had to put the
to keep WP from striping the code out. It doesn’t like empty tags.Forum: Plugins
In reply to: Join Email List FeatureMaybe a plugin instead? Any leads?
Forum: Fixing WordPress
In reply to: wp_list_pages call function with child page sub menu question?Very nice.
Forum: Fixing WordPress
In reply to: New Comment does not generate an e-mailSorry, double post.
Forum: Fixing WordPress
In reply to: New Comment does not generate an e-mailThere was a timing out problem. Sorry for the duplicates.
Forum: Fixing WordPress
In reply to: New Comment does not generate an e-mailI do not have a good solution except the dirty way. I downloaded a form called form_ac.asp and styled it accordingly and presented it through an
<iframe></iframe>element in a page. This, of course, was for a site running on a Microsoft server and I never figured out a solution to the comment email notification part (and I didn’t try).The contact form is here:
http://www.codefixer.com/tutorials/sample_form_email_script.asp
The discussion is here:
http://wordpress.org/support/topic/69966?replies=8
The resulting contact page is here:
http://chrisjagers.net/wp/?page_id=4
Hope this helps.
Forum: Everything else WordPress
In reply to: Uploading html and flashIn what form would you like to have them on your blog… post, page? Uploading them to a server an then linking them from a descriptive post or page seems to be you best answer-and only answer seeing how they are full-blown sites that have their own distinct styles. Is this incorrect?
Forum: Fixing WordPress
In reply to: wp_list_pages call function with child page sub menu question?This link was given to me recently and might help you out:
http://codex.wordpress.org/Template_Tags/wp_list_pages#List_Child_Pages
You want to specify what depth your looking for. I believe you are looking for a sub-page of a sub-page which would make that a depth of 3. Having two
include (TEMPLATEPATH . '/which-ever-nav-needed.php')in the template files necessary (page.php), with the proper depth specified in each file, should do the the trick… theoretically.Forum: Fixing WordPress
In reply to: wp_list_pages call function with child page sub menu question?Don’t I know you?
Forum: Plugins
In reply to: Search limited to titles onlyThis is the loop I use in my search.php file (I believe it was taken from the basic Kubrick theme and altered):
<?php while (have_posts()) : the_post(); ?><div class="post">
<h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h3><p class="postmetadata">Posted in <?php the_category(', ') ?> <small><?php edit_post_link('Edit', ''); ?></small></p>
</div><?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Previous Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Next Entries »') ?></div>
</div><?php else : ?>
<p class="alert"><strong>Sorry, but your search for <em>'<?php echo wp_specialchars($s); ?>'</em> brought no results. You can check the lists below or try a different search.</strong></p>
<?php endif; ?>
This is the part of it that returns the title:
<h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h3>