amandabee
Forum Replies Created
-
Forum: Plugins
In reply to: [Co-Authors Plus] [Plugin: Co-Authors Plus] Theming Tips?I also found this:
https://www.ads-software.com/extend/plugins/co-authors-plus/other_notes/Which was actually what I needed. Not sure why/how I missed that.
PS. Hi!
Forum: Plugins
In reply to: Feed filter broke in 3.1Solved, thanks to impworks. I’m over flowing with gratitude. Really.
function filterFeed($query) { if ($query->is_feed) { $query->set ('category__not_in', '18' ); } return $query; } add_filter('pre_get_posts','filterFeed');
Forum: Plugins
In reply to: [Feed2Post] Integrate feed2post with an excerpt plugin?That was easier than I expected. Here’s how I handled it the_excerpt-reloaded in my theme (where “feed_cat” is the category that feed2post posts are in):
<?php if(in_category('feed_cat') && is_home()) { the_excerpt_reloaded(120,'<p><a><img>','excerpt',TRUE,'Continue reading ?'); } else { the_content('Continue reading ?'); } ?>
Forum: Requests and Feedback
In reply to: [Plugin: WP-OpenID] OpenID overrides website in profile?This is crazy.
I don’t understand how forcing a profile URL prevents spoofing. It is one thing for me to use my gmail identity to access WordPress. It is another to require me to make my openID my URL.
Forum: Everything else WordPress
In reply to: Tag QuestionThere is a period making Haecceity’s link break. Try:
https://codex.www.ads-software.com/Template_Tags/wp_tag_cloud
Instead.
Forum: Fixing WordPress
In reply to: Can’t upload/attach documentsWord Press filters out unacceptable MIME types:
https://codex.www.ads-software.com/Plugin_API/Filter_ReferenceBy default,
xls
anddoc
files are not permitted. You can change that setting by adding them to the list of acceptable MIME types in wp-includes/functions.phpForum: Plugins
In reply to: Allow users to post images in comments?I think you’re better off using my-hacks.php than tweaking the code. my-hacks.php will survive an upgrade. Code tweaks won’t necessarily.
Forum: Requests and Feedback
In reply to: 2.3 Tag GripesMy whine?
I liked having a list of existing tags available. I like to reuse tags. I miss UTW.
Forum: Fixing WordPress
In reply to: email comment notificationTry this thread:
Forum: Fixing WordPress
In reply to: comment notification not workingThis thread has some discussion of potential solutions:
Forum: Fixing WordPress
In reply to: multiplying apostrophesSigh. I was hoping to find some insights on this problem.
Forum: Everything else WordPress
In reply to: Disabling wptexturize()You could do it in your theme, by adding this:
remove_filter(‘the_content’, ‘wptexturize’);
to your functions.php file (which you might have to make).
Forum: Fixing WordPress
In reply to: Not-so-smart quotesForum: Requests and Feedback
In reply to: Please give us the option to turn of smart “quotes”Thanks.
I’m spamming this thread with keywords in case anyone else is looking for this by searching for help turning of extended characters or fancy quotes or curly quotes.
Got that? extended characters or fancy quotes or curly quotes — these terms are wrong! You should be searching for smart quotes.
Forum: Installing WordPress
In reply to: 404 Error – Requested URL not found on this serverMy guess is that you need to start with your web host.
Does their installation of fantastico send an email when the installation is complete? It may not be instantaneous.
Can you look at the database that fantastico created for you? Is there data there?
What about your file system, can you see the wordpress location if you look via FTP or SSH at the files in your web directory?