-
Gravity Forms is the single best plugin you can get for WordPress.
-
Recent Posts
Category Archives: QuickTip
Passing parameters from PHP to Javascripts in plugins » Otto on WordPress
Much cleaner. One static and unchanging JS file to cache. Parameters get put into your HTML itself as a one-liner. You can deal with the parameters using a normal PHP array before passing them over. No need to screw around … Continue reading
Posted in QuickTip, WordPress
Tagged Javascript, Plugin Development, WordPress Development, WordPress Plugin Development
1 Comment
How to Add www. – or Remove www. – From Your URL
This has been done many times by others, but just a quick tip on how to add or remove www. from your website’s address. This is helpful for URL canonicalization and user experience consistency. You can also achieve SEO-friendly canonicalization … Continue reading
Posted in QuickTip, Web Development
Tagged Canonical, Canonical Tag, domain, Domains, htaccess, SEO Steps, SEO Tutorial, URL, WWW
5 Comments
How to Prevent Loading WP-DownloadManager’s CSS File
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 … Continue reading
Posted in Code, QuickTip, WordPress
Tagged CSS, load time, Plugin, Plugins, WordPress Plugins, WP Plugins, WP-DownloadManager
Leave a comment
