kschmidgall
Forum Replies Created
-
Forum: Plugins
In reply to: [WP List Tweets] Upgraded WP List Tweets – Doesn't show tweets on front-endIt was, in fact, the missing wp_footer() call in the footer…
THANKS!!
Forum: Fixing WordPress
In reply to: Change page URL name, not just category/post URLHi,
I’ve read through the permalinks section of codex (a few times, slowly) and several threads on the forum, but I’m still struggling to find answer to my question:
In the codex it says that URLs for pages are created according to the hierarchy of the pages (for example: https://mysite.com/parent/child/grandchild).
I need to omit the ‘/parent’ from the URL.
When I click ‘Edit’ for the permalink it only allows me to change the page slug, not the earlier part (/parent) of the URL…
Can anyone point me in the right direction??
REALLY appreciate your help!!
Forum: Plugins
In reply to: I need an easy shopping cart that WORKS!Hey, most awesome shopping cart that I’ve found:
https://www.e-junkie.comSuper simple and they have really excellent support…and it’s cheap.
Hope that helps!
Forum: Plugins
In reply to: wp-user-moderation and cimy-extra-user-fields conflictDoes anyone have any thoughts on this?? Any suggestions at all??
I appreciate your help!!
Forum: Plugins
In reply to: WP User Moderation and Register Plusneo-mag:
From the dashboard, click ‘Users’…there should be a new tab in there called ‘Pending Registrations’.
Hope this helps!
Forum: Plugins
In reply to: [Plugin: Yet Another Related Posts Plugin] No Related PostsMitcho,
I can’t get this working… ??
Some context:
In the main area of the page, I have a single post:<!-- This displays the event main content. --> <?php iinclude_page($post->ID,'displayTitle=true&titleBefore=<h2>&titleAfter=</h2>&displayStyle=DT_FULL_CONTENT'); ?>
In the right sidebar, I want to display posts related to the main content…could you give me an example of a loop that would achieve this?
I’m trying this, and it’s not working:
query_posts("cat=22&showposts=2"); while (have_posts()) : the_post(); related_posts(); // display post here (attachments included) ?> <div class="post" id="post-<?php the_ID(); ?>"> <p><b><?php the_title(); ?></b></p> <div class="entry"><?php the_content('Read the rest of this entry »'); ?></div> <img class="sidebarTitleLine" src="<?php bloginfo('stylesheet_directory'); ?>/images/line.gif" height="1" alt="line" /> </div> <?php endwhile; ?>
Any help would be greatly appreciated!!!
Best,
Kate