givememyleg
Forum Replies Created
-
Forum: Plugins
In reply to: [Dynamic Featured Image] Not displaying first featured imageDone. ?? Thanks!
Forum: Plugins
In reply to: [Dynamic Featured Image] Not displaying first featured imageAh, okay. I’ll try that. Thanks!
Forum: Plugins
In reply to: [SEO Ultimate] Title Tag Rewriter not listing all categoriesWas able to figure this out. In case anyone is curious and needs to fix this later on:
File to edit: /wp-content/plugins/seo-ultimate/modules/class.su-module.php
Replace
$objects = get_terms($type, array('search' => $search));
with
$objects = get_terms($type, array( 'search' => $search, 'hide_empty' => ($type == 'category' ? false : true) ));
Cheers
Forum: Plugins
In reply to: [SEO Ultimate] Title Tag Rewriter not listing all categoriesBump?
Forum: Fixing WordPress
In reply to: Weird ? characters using the_excerpt on homepage include.Wow, I don’t know why I didn’t think of that… Thanks for bridging the gap of my stupidity, it works now!
Forum: Plugins
In reply to: Blog posts create forum threads?I asked him, but he uses vbulletin, I’m running phpbb3.
Forum: Fixing WordPress
In reply to: Weird ? characters using the_excerpt on homepage include.Still haven’t figured out the issue, any ideas?
Forum: Plugins
In reply to: Blog posts create forum threads?Thanks for the links, however I was unable to find anything. I don’t want to show phpbb on my blog. I just simply want a script or mod or something so when I publish a new wordpress blog, it will create a post in my forum.
For example, this is a blog/forum site that automatically does this – https://www.stevepavlina.com/forums/steve-pavlina/28955-succeeding-helping-others-succeed-blog.html
This forum post was generated when he published his blog post – https://www.stevepavlina.com/blog/2009/02/succeeding-by-helping-others-succeed/
He didn’t have to do anything. I’m not sure how he got it to work, but I’ve seen it on a few other sites as well. There has to be a mod or something out there, I just haven’t been able to find it.
Thanks
Forum: Fixing WordPress
In reply to: Weird ? characters using the_excerpt on homepage include.Bump!
Forum: Fixing WordPress
In reply to: Weird ? characters using the_excerpt on homepage include.The ? character seems to be showing up after the end of sentences in a paragraph. Strangely, at the end of paragraphs, there is no problem.
Forum: Fixing WordPress
In reply to: Weird ? characters using the_excerpt on homepage include.Here is the code for the homepage excerpts if it helps:
<?php require('blog/wp-blog-header.php'); ?> <?php query_posts('showposts=5'); ?> <?php while (have_posts()) : the_post(); ?> <a class="blog" href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a><br /><?php the_excerpt(); ?> <?php endwhile;?>