Skip to content
razworks-text-logo-red-w300
  • Home
  • BlogExpand
    • Music
  • About Raz
  • Contact
YouTube Spotify

razworks-r-icon

razworks-text-logo-red-w300

Wordpress

Web Dev | Wordpress

Remove Images from WooCommerce pages

ByRazworks January 13, 2017

single Product Pages Here’s a handy tutorial on removing product images from the single WooCommerce product page. The basic idea is that we’ll want to remove the action that adds WooCommerce images. We can do so by adding this snippet into our child functions.php or the Code Snippets plugin: 1 2 // Remove image from…

Read More Remove Images from WooCommerce pagesContinue

Web Dev | Wordpress

Genesis Featured Image on top

ByRazworks November 8, 2016

Genesis WordPress theme /* Code to Display Featured Image on top of the post */ add_action( ‘genesis_before_entry’, ‘featured_post_image’, 8 ); function featured_post_image() { if ( ! is_singular( ‘page’ ) ) return; the_post_thumbnail(‘post-image’); }

Read More Genesis Featured Image on topContinue

Web Dev | Wordpress

WordPress add class to menu anchor

ByRazworks September 13, 2016

WordPress has tools to add a class to an LI element of a menu item. It also has tools to add a rel value to the anchor of a menu item But it does not have tools to add a class to the anchor element of a menu item. Let say I add a phone…

Read More WordPress add class to menu anchorContinue

Web Dev | Wordpress

Genesis archive change H1 to H2

ByRazworks August 16, 2016

//*Changing Genesis H1 Post Titles to H2 add_filter( ‘genesis_post_title_output’, ‘ac_post_title_output’, 15 ); function ac_post_title_output( $title ) { if ( is_home() || is_archive() ) $title = sprintf( ‘ %s ‘, apply_filters( ‘genesis_post_title_text’,get_the_title() ) ); return $title; }

Read More Genesis archive change H1 to H2Continue

Web Dev | Wordpress

Genesis move post title below image

ByRazworks August 16, 2016

// Move image above post title in Genesis Framework 2.0 remove_action( ‘genesis_entry_content’, ‘genesis_do_post_image’, 8 ); add_action( ‘genesis_entry_header’, ‘genesis_do_post_image’, 8 );

Read More Genesis move post title below imageContinue

Web Dev | Wordpress

Contact Form 7 in Google Tag Manager

ByRazworks July 29, 2016

Contact Form 7 on WordPress with Google Tag Manager

Read More Contact Form 7 in Google Tag ManagerContinue

Page navigation

Previous PagePrevious 1 2 3 Next PageNext
YouTube SoundCloud
  • Home
  • Blog
  • About Raz
  • Contact

© 2023 Razworks

Scroll to top
  • Home
  • Blog
    • Music
  • About Raz
  • Contact