Download the plugin from WordPress.org Add a debt calculator to your WordPress blog Do you have a financial blog or a blog about debt, money management, or household spending? Add a free debt calculator to your blog with no coding required. Updating the style: You can update the form’s style by editing the plugin’s debt.css […]
Category: WordPress
Download the Plugin from WordPress.org Another WordPress SEO Plugin by Katz Web Services The Show Content Only Plugin enables you to show only a post or page’s content, without sidebars, footers, and other content. There are many different reasons for wanting to show just the content, but there’s never been such an easy way to do […]
{|} Download the SEO WordSpinner Plugin and test {SEO WordSpinner|the SEO WordSpinner plugin|this great plugin|this WordPress SEO plugin} out. Refresh this page to experience content spinning in action. Why use a content spinner? There are a lot of content spinners out there (I won’t even bother linking to them, most are for spamming, not for […]
The Best WordPress SEO Plugin? A combination of two. All in One SEO Pack (AIOSEO) is the leader in WordPress SEO plugins. It offers great functionality and simple integration into the process of writing a post. AIOSEO is not a perfect plugin, however, because it lacks some very important functionality: Custom category title tags Custom tag […]
When you would use excluded categories: When using WordPress as more of a content management system (CMS) than a blogging platform, there are many things that you need control over. One of them is special-case categories. Frequently asked questions Testimonials Case studies Press releases When you have a category of posts that you don’t want […]
Disabling the Cookies for Comments plugin broke the comments form. On the recommendation of Matt Cutts, I added the Cookies for Comments plugin to this blog, and also added their recommended .htaccess modifications: RewriteCond %{HTTP_COOKIE} !^.*XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.*$ RewriteRule ^wp-comments-post.php – [F,L] When I realized that Cookies for Comments was slowing down my blog considerably, I disabled […]
If you want to disable the WordPress plugin WP-DownloadManager‘s download-css.css file from being loaded, add the following code to your functions.php file: remove_action(‘wp_print_styles’, ‘downloads_stylesheets’); Alternatively, if you would just like to use your own stylesheet, you can add a file named download-css.css to your theme’s directory, and the plugin will automatically load your stylesheet instead.
Download Gravity Forms Addons Plugin on WordPress.org Gravity Forms + Directory Capabilities Since Gravity Forms came out, it’s been transforming how WordPress can be used. It makes a contact form more than a contact form. It makes a contact form the basis for anything you can imagine. The Gravity Forms Addons plugin has added Directory […]
I am building a store using the Shopp plugin, and I noticed that there are possibilities for duplicate content issues: A product can be accessed both by /shop/{productID} and /shop/{product-slug} A tag can be accessed using /shop/?shopp_tag={tag-uri} and /shop/tag/{tag-slug} A tag can be accessed using /shop/?shopp_category={category-id} and /shop/{category-uri} Should Google somehow find it’s way into […]
I am using the ImageScaler plugin for WordPress on a project, and I like what it does, but it adds a non-standards-compliant attribute to images, such as: <img class=”” src=”http://www.example.com/imagescaler/generated-image.jpg” alt=”Example” width=”258″ height=”234″ imagescaler=”http://www.example.com/imagescaler/original-image.jpg” /> To strip imagescaler’s imagescaler attribute, add the following into your functions.php file: add_filter(‘the_content’, ‘strip_imagescaler’); function strip_imagescaler($content) { $content = preg_replace(‘/imagescaler=”(.*?)”.?/s’,”, […]
If you use the Shopp plugin for WordPress, you’ve likely found something frustrating: you click on the “Edit Post” link, and you get to edit the Store page, not the product in Shopp. Here’s a quick fix: add the following to your theme’s functions.php file:
Get control over your custom taxonomy’s Title Tag With Yoast’s Simple Taxonomies plugin, you can set up a custom categorization system for posts on your site known as a custom taxonomy. When trying to optimize these pages, I realized that the All in One SEO Pack plugin doesn’t have support for custom taxonomies, so it […]
Rich Text Tags Plugin on WordPress.org The Rich Text Tags plugin allows you to use the WYSIWYG TinyMCE text editor (the WordPress default editor) while editing Categories, Tags, and taxonomies (custom categorization created by the Yoast Simple Taxonomies plugin).
I’ve been using Joost de Valk’s Simple Taxonomies plugin for a couple of projects, and I’ve been very disappointed by the formatting of the terms output code. When configuring the plugin, you have the option of choosing “Add terms to the end of posts” or “Add terms to the end of excerpts.” If you do, […]
WordPress, just get the adjacent image links. I’ll tell you what to do with them! WordPress is normally great about providing functions that have a return and an echo version. In WordPress, if a function has the prefix get_, then it does not echo (print it into the content), but rather returns the result so […]
When moving from WordPress.com, my Digg shortcodes broke. I wanted a simple way to transition my Digg chicklets to a WordPress.org installation. I created a function that does nothing special, except for reproducing the Digg shortcode functionality on WordPress.com. All you need to do is enter [digg=http://digg.com/path_to_story_on_digg], and it will create a Digg This chicklet […]
iContact Widget for WordPress
iContact for WordPress Download the widget from WordPress.org This widget helps you install an iContact signup form on WordPress without any hassle. Don’t use iContact? You need it for this widget to work, so test drive it with a 15 day free trial.
Ever wonder if your widget is activated on an external site? Here’s how to find out. When you register a sidebar widget, you use code like this: register_sidebar_widget(array(‘Name of Widget’, ‘class-of-widget’), ‘widget_function’); If you want to check whether the widget is activated (you may want to for a variety of reasons), you can do it […]
Custom RSS feed me, Seymour Recently I wanted to create a feed for Google base that used a bunch of custom fields that I had created. It wasn’t easy to find what I was looking for online, so I thought I’d show how simple it is to make a custom feed & feed template in WordPress.
I’m going to elaborate on this further (and about Interspire in general), but for those of you who want to make WordPress functions available throughout your shopping cart, here’s how: Before the closing ?> in the init.php file, add the following code: require(realpath(ISC_BASE_PATH).’/blog-directory/wp-blog-header.php’);, where /blog-directory/ is your WP installation. If you installed it in the root directory, […]
You must be logged in to post a comment.