If you can’t connect to the server even if you have used the correct logins, you may have to make sure that you’ve set your FTP software to active mode. FTP connection to our cloud servers requires an active ftp mode. NOTE: This FTP setup is based on FileZilla (for Windows) configuration only. If you’re Full Article…
Search the Wiki
Gravity forms access for clients
Taken from Gist: https://gist.github.com/mannieschumpert/7188426 When using Gravity Forms on a client project, you might want the client to be able to view and manipulate form entries, without giving them administrator access. The user_has_cap filter allows us to add capabilities without changing the role in the database. This gist allows users with the editor role to Full Article…
Change the Gravity Forms submit button
Taken from Gist here: https://gist.github.com/mannieschumpert/8334811 Filter the submit button in Gravity Forms to change the <input type=”submit> element to a <button> element. There’s an example in the Gravity Forms documentation, but it lacks the proper code to show your custom button text, AND removes important attributes like the onclick that prevents multiple clicks. I was Full Article…
How should I escape commas and speech marks in CSV files so they work in Excel?
Taken from Stack Exchange: http://stackoverflow.com/a/12473481/2821561 We eventually found the answer to this. Excel will only respect the escaping of commas and speech marks if the column value is NOT preceded by a space. So generating the file without spaces like this … … fixed the problem. Hope this helps someone!
Guide to Cropping Thumbnails in WordPress
Originally seen here: http://havecamerawilltravel.com/photographer/wordpress-thumbnail-crop Thumbnails come in handy in all sorts of places in WordPress. The most obvious is on the homepage with a list of blog posts. You can also use them in the content of a post. And depending on your theme, they can also be used on category listings, tag listings, search results, Full Article…
WordPress custom image size cropping
Taken from: http://www.danielauener.com/wordpress-custom-image-size-crop-how-to-fix/ If you are using custom image sizes in your WordPress theme you likely know the problem. Cropping, rotating or flipping an image via the WordPress image editor, works just on the original. After editing the image is not available in your custom sizes anymore, all you get in your theme is the edited Full Article…
Get the IP addresses of all devices on my home network
Taken from here: http://apple.stackexchange.com/a/19784 Open the terminal application and type the command: This will show the IP and MAC address of all devices on the network that it knows about.
Bullet proof DNS for sending emails
Always setup a robust set of DNS records for your emails. Here is the setup I have been using for my self! Usually it’s easy if the website host is also hosting emails, this information is more useful for situations where the website and email hosting are separate (as they should be). You can further Full Article…
Modify Youtube Oembed URLs
Expanded from here. There are different methods for modifying Youtube’s iframe url to get the look and feel you want for your embedded youtube video. WordPress offers Oembed functionality which makes it easy for WordPress users to input youtube urls into metaboxes, content, etc. What is not as straight forward is altering the appearance that Full Article…
Define a specific width for native WordPress galleries
Put this into a plugin or your function.php file. Change the content_width variable your desired pixel value.