Skip to content

Instantly share code, notes, and snippets.

@JarrydLong
Last active March 29, 2021 04:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JarrydLong/f77a170d80f70c41fc52bf7205e2f0c3 to your computer and use it in GitHub Desktop.
Save JarrydLong/f77a170d80f70c41fc52bf7205e2f0c3 to your computer and use it in GitHub Desktop.
<?php
/**
* This recipe will add in the necessary classes to PMPro Buttons, ensuring they
* have the same look & feel as your theme: Zakra
*
* https://wordpress.org/themes/zakra/
*
* 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_zakra_classes( $class, $element ){
if ( in_array( 'pmpro_table', $class ) ) {
$class = array();
$class[] = 'wp-block-table';
}
return $class;
}
add_action( 'pmpro_element_class', 'mypmpro_zakra_classes', 10, 2 );
@laurenhagan0306
Copy link

This recipe is included in the blog post on "Using the Zakra Theme By ThemeGrill with Paid Memberships Pro" at Paid Memberships Pro here: https://www.paidmembershipspro.com/zakra-theme-by-themegrill-paid-memberships-pro/

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