Created
July 20, 2013 00:29
-
-
Save agusmu/6043288 to your computer and use it in GitHub Desktop.
PrimaShop - Show "Call To Action" on homepage only
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Tutorial: http://www.primathemes.com/documentation/show-call-to-action-on-homepage-only/