rachelab
Forum Replies Created
-
I had the same problem until i stumbled on it: It’s under Settings! Click on the regular WordPress settings menu and you’ll see RSVP Options listed.
(I’d recommend to the developer to put a note about that on the Plugin site since this isn’t very obvious, especially since most everything else is in a separate area…)
Forum: Themes and Templates
In reply to: [San Kloud] [Theme: San Kloud] No depths in sidebar page listLooks like this theme isn’t supported, so i’ll use a different one for my site…
Forum: Fixing WordPress
In reply to: more ignored in custom posts pageI am still have trouble getting the more tag to work. I’ve tried setting the more variable to 0 and to 1. Neither works on a custom page that uses a plug in to collect various posts (see this page).
Here’s the whole code for the page (let’s hope this posts):
<?php /* Template Name: Page allowing More Tag */ ?> <?php get_header(); ?> <div id="content"> <!-- This is using page-more.php --> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <h2 id="post-<?php the_ID(); ?>"><?php the_title(); ?></h2> <?php the_content(__('... read more here')); ?> <?php wp_link_pages(); ?> <?php edit_post_link(__('Edit'), '<p>', '</p>'); ?> <?php endwhile; endif; ?> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>
Thanks!
Forum: Fixing WordPress
In reply to: Are you sure you want to edit this post?I started having this problem when I saved a post with just a number in the title. In addition to this annoying question, the Visual Editor has disappeared and none of the buttons in the Code Editor show up unless I unselected the option for the Visual Editor. It almost seems like the post with only a number (935) in the title corrupted something.
Forum: Fixing WordPress
In reply to: exclude post from main indexFor excluding posts in the Recent Posts list, check out this widget:
https://blue-anvil.com/archives/create-a-wordpress-recent-posts-widget
I haven’t tried it yet but it sounds promising! You’ll have to combine it with code that excludes the category from the main page (see blepoxp or rudolf45 posts or https://blogulate.com/content/exclude-categories-from-wordpress-frontpage/ BUT note that the posts are still counted even though they’re not shown), so it’s a bit of a pain but…