Skip to content

Instantly share code, notes, and snippets.

@agusmu
Created July 20, 2013 00:29
Show Gist options
  • Save agusmu/6043288 to your computer and use it in GitHub Desktop.
Save agusmu/6043288 to your computer and use it in GitHub Desktop.
PrimaShop - Show "Call To Action" on homepage only
/* show "call to action" on homepage only */
add_filter( 'prima_get_setting_calltoaction', 'prima_show_calltoaction_homepage_only' );
function prima_show_calltoaction_homepage_only( $option ) {
if ( is_home() || is_front_page() ) {
return 1;
}
else {
return 0;
}
}
@agusmu
Copy link
Author

agusmu commented Sep 28, 2013

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment