Search the Wiki

Viewing 251 to 260 of 337 items

Gravity Forms CSS: Targeting Specific Elements

This awesome css guide for Gravity Forms was originally posted here: http://www.rocketgenius.com/gravity-forms-css-targeting-specific-elements/ The team here at Rocketgenius is about to release Gravity Forms version 1.5 with several new features and enhancements. Along with these new features, we’ve introduced some new markup and form elements that I’m sure many people will want to style to match  Full Article…

0

Get the url of the post thumbnail as a variable

One of the improvements in WordPress 2.9 is native support for thumbnail images on posts. The API is pretty good – although it assumes that you want to return the whole IMG tag. In my case I wanted to return the URL of the image (So I could wrap the actual thumbnail in a lightbox-style  Full Article…

0

Browser detect script and conditional statements

This is a browser detect script by Chris Schuld. I have used this script on the RiAus mainsite developed with canvas. First of all- download the browser.php script and save to a directory  within your website. Now you can include the script with a statement such as this: Here are the current set of identifiers:  Full Article…

0

Move your WordPress blog to a new domain

A friend recently asked me how to move his blog, which is on /blog/ on his domain, to a new domain on it’s own. The steps are easy, but have to be taken in the right order to make sure you’re not annoying your users and the search engines: Put up a robots.txt on the new  Full Article…

0

Remove WordPress Multisite data

Lots of articles are written across the web about how one can use WordPress Multisite capabilities to power several blogs from one installation. This feature comes from WPMU being merged into WP. Recently I was working with a client, which was stucked in between of the process of setting up and wanted me to complete  Full Article…

0

How to use the Fav Me plugin

Using the Plugin We leave the no-brainer part to learn something interesting now: how to implement the plugin in your theme. Basically all you need are 2 functions: mfp_the_link(); mfp_display(); mfp_the_link will display an “Add this post to your favorite post list” link wherever you call it. Best practice of course is to add the function  Full Article…

0

20 Helpful WordPress SQL Queries Snippets

WordPress keeps every single scrap of information that is fed into it in a MySQL database, whether that be posts, pages, comments, blogroll, the plugin settings… everything. Yes, the WordPress admin backend is fantastic and it does allow you to control and edit all aspects of this information with ease. Up to a certain point  Full Article…

0

13 SQL Queries for WordPress

For example, if you needed to change some information across the board in WordPress, going through each record is very time consuming and prone to human error. By simply executing a SQL query against your WordPress database, you can make the necessary changes quickly and efficiently. Shown below are some SQL queries that can be  Full Article…

0