Created
July 14, 2020 08:42
-
-
Save JarrydLong/98ef6b1f9cd76ad7980078b9933ca057 to your computer and use it in GitHub Desktop.
This file contains 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
<?php | |
/** | |
* This recipe will add in the necessary classes to PMPro Buttons, ensuring they | |
* have the same look & feel as your theme: Hestia | |
* | |
* https://wordpress.org/themes/hestia/ | |
* | |
* You can add this recipe to your site by creating a custom plugin | |
* or using the Code Snippets plugin available for free in the WordPress repository. | |
* Read this companion article for step-by-step directions on either method. | |
* https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/ | |
*/ | |
function mypmpro_hestia_classes( $class, $element ){ | |
if ( in_array( 'pmpro_btn', $class ) ) { | |
$class = array(); | |
$class[] = 'btn'; | |
} | |
return $class; | |
} | |
add_action( 'pmpro_element_class', 'mypmpro_hestia_classes', 10, 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This recipe is included in the blog post on "Using the Hestia Theme by Themeisle with Paid Memberships Pro" at Paid Memberships Pro here: https://www.paidmembershipspro.com/hestia-theme-by-themeisle-paid-memberships-pro/