Change the Search Field Default Text in Genesis WordPress Theme

You can change the default “Search this Website…” text in the Search bar field in a Genesis WordPress theme by using a filter added to your functions.php file. //Change search form text function themeprefix_search_button_text( $text ) { return ( ‘Search text goes here…’); } add_filter( ‘genesis_search_text’, ‘themeprefix_search_button_text’ ); So in the above code a  function is…

Read More

Adding in Google Plus Authorship and Publisher Profile to Genesis WordPress Theme

As of 26th June 2014, Google has announced that they are dropping the profile image and circle count from the search result listings, this is for both cosmetic and leveling the playing field reasons.Further to this Google has abandoned the Author linking project also the Yoast WordPress SEO plugin has removed the author parts from…

Read More

Use Bootstrap Modals in WordPress Themes

Bootstrap has some nifty Javascript plugins in their library for the Bootstrap framework including Modals, which are pop up window dialog prompts. These modal pop up windows can be generated without writing javascript by using Bootstrap’s API data-attribute values which are inserted into the HTML markup and and can control which HTML element can control the…

Read More

Using Navgoco as a Vertical Multi-Level Menu in a WordPress Genesis Theme

Looking for a expandable/contractable Vertical Multi-Level Slide Menu in regular WordPress or Genesis themes, Navgoco has you covered. Create Your Menu Set up your custom menu as normal in WordPress Dashboard with multi levels and place into position via a widget area or simply use HTML mark up on a post or page, this example uses a…

Read More