WordPress If Statements

WordPress Conditional Tags and Statements that can help along the way When looking to display specific content on page wether it be an image/copy/etc you will need a specific WordPress If Statement.  Below are a list of WordPress If Statements you may need along the way, as well other specifics. is_home() – home page is_front_page() – … Continued

Ubermenu not working on Roots Theme?

Using Urbermenu? Is that little bastard not working on your Roots based site? This should do the trick! Add the following to the custom.php file function stop_removing_core_classes(){ remove_filter(‘nav_menu_css_class’, ‘roots_nav_menu_css_class’, 10 ); remove_filter(‘nav_menu_item_id’, ‘__return_null’); } add_action( ‘init’ , ‘stop_removing_core_classes’ ); then replace the current nav in the header-top-navbar.php with this: <nav role=”navigation”>  <?php if (has_nav_menu(‘primary_navigation’)) : … Continued

WordPress tabbed Photo Gallery / Slider

Need to create a gallery/slider for a client? Do they have multiple gallery’s/slider’s? Well you don’t have to always put them on separate pages.  You can us a jQuery-Ui Tabs and the Royal Slider! The following will show you how to finish making a WordPress tabbed Photo Gallery / Slider for your website. Quick run … Continued

Advanced Media Search – WordPress

I came across Media Library Assistant when I was in desperate need of a search fix for the media section in WordPress. This came up when images were being optimized.  Once an image is optimized you can no longer search for it via its file name, but name now given to it.  If a client … Continued

Gravity Forms Tab Not Going to Next Field?

You’ll notice that if you have more than one Gravity Form on the page and you are in the first field of the form and hit “tab” that you tend to jump to the second form. If you’re website has multiple forms on numerous pages it really could be a hassle to go through each … Continued

WordPress Search and Replace Tool

Run into a situation when you are migrating WordPress sites or you’ve built a dev site filled with content, images and files, yet have this ugly url attached to it?  Well this is here to help with that problem and solve it for you! Lets say your domain is wastelandgraphics.com (can’t help but to promote … Continued