Custom HTML Message Fix
-
If anyone is having an issue with the fix that was posted some time ago. I change to this and it works fine now.
function members_get_post_error_message( $post_id ) {
/* Get the error message for the specific post. */
$error_message = get_post_meta( $post_id, ‘_members_access_error’, true );/* If an error message is found, return it. */
if ( !empty( $error_message ) )
$return = $error_message;/* If no error message is found, return the default message. */
else
$return = members_get_setting( ‘content_permissions_error’ );/* Return the error message. */
return html_entity_decode(apply_filters( ‘members_post_error_message’, $return ));}
Party on!
- The topic ‘Custom HTML Message Fix’ is closed to new replies.