Amie
Forum Replies Created
-
Forum: Plugins
In reply to: flShow Manager edit/create issueAlso, if you can see the “Reflection Transparency” option, you can use the tab key to get to the “Choose Images” button.
Forum: Plugins
In reply to: flShow Manager edit/create issuewe are looking into adding a shortcode to allow you to insert these into posts. in the mean time, you can use Ozh’s execPHP plugin.
We’ll look into shortening the height of the popup window. What’s your screen resolution?
Forum: Themes and Templates
In reply to: Sandbox theme problem with WordPress 2.6have you tried upgrading to sandbox 1.6? if that still doesn’t work, check in the sandbox’ functions.php and remove line 498
Forum: Installing WordPress
In reply to: Re-Import Bloggerurgh.
apparently this is an issue with blogger, i’ve been able to import other blogs multiple times, just not this one.
Forum: Fixing WordPress
In reply to: how get attachment description?AFAIK, it only displays when you call
the_content()
on the attachment page.Forum: Plugins
In reply to: Is it a conflict having 2 Google Sitemaps, 1 in Root and 1 in Blog directory?my understanding is that the best solution is to use a sitemap index to reference both sitemaps.
Forum: Fixing WordPress
In reply to: Add an RSS icon to each category pageslightly more precise method, via otto42 through lorelle:
<a href="<?php get_category_rss_link(true,$cat,$cat); ?>" title="<?php echo single_cat_title(); ?> feed"><img src="<?php bloginfo('template_directory') ?>/icons/rss.png" alt="feed icon" title="<?php echo single_cat_title(); ?> feed" /></a>
Forum: Alpha/Beta/RC
In reply to: Google in Dashboard?+1 for google being pointless. it’s just a list of my recent posts.
however, now that there are filters, you don’t need to hack core files. just save this as a plugin (wrapped in php tags, of course):
/* Plugin Name: Technorati is cool Description: Replace the google blogsearch links with the old technorati ones. */ function technorati_incoming_feed($notused) { return "https://feeds.technorati.com/cosmos/rss/?url=".trailingslashit(get_option('home')); } function technorati_incoming_link($notused) { return "https://www.technorati.com/search/".trailingslashit(get_option('home')); } add_filter('dashboard_incoming_links_feed','technorati_incoming_feed'); add_filter('dashboard_incoming_links_link','technorati_incoming_link');
otto42 posted something similar in trac, i didn’t write it.
Forum: Installing WordPress
In reply to: WP2.2 PHP5 MySQL5 Windows 2003yup, XAMPP is very easy to install and set up.
should you get lost, mark has a nice tutorial
Forum: Fixing WordPress
In reply to: listing child pagesunfortunately wordpress doesn’t know what page the blog page is (basically, it’s the home page, not a page)
it’s best to just set the
child_of
to match your blog page’s ID. you can use is_home() to run different subpage code on the blog page.i use some really complex code to do it on my own site. it’s a pain.
Forum: Fixing WordPress
In reply to: Cannot login to wp-login.php on subdomain installare you logging in to blog.mydomain.com/wp-login.php, or mydomain.com/blog/wp-login.php ?
one of the two should work.
Forum: Plugins
In reply to: wp stats won’t list on plugins pagecheck to make sure the wp-stats is only 1 folder level deep.
i.e., it should be
/wp-content/plugins/wpstats/wpstats.php
depending on how you unzipped it, you might accidentally have:
/wp-content/plugins/wpstats1.1/wpstats/wpstats.php
or something similarForum: Plugins
In reply to: RSS … Syndication?i hear that planet is the best for this, rather than wordpress, but i’ve never used it (it’s what powers https://planet.www.remarpro.com )
Forum: Themes and Templates
In reply to: Theme templatei always start my themes from sandbox these days:
https://www.plaintxt.org/themes/sandbox/
it can be a bit confusing, but you can basically ignore everything in functions.php (leave the file as it is in your theme)some people swear by building from the “classic” theme that’s in the default wordpress installation.
Forum: Plugins
In reply to: FAQ’s For WP