Free Discovery Call

Currently FULL

Please email [email protected] for waitlist opportunities.

This call is a chance for us to get to know a little bit about one another!

The goal is for me to learn about you and your health goals.

It will also give you a chance to learn more about me and what I do, answer any questions you have, and figure out what program is right for you. 

Days
Hours
Minutes
Seconds
/** * Remove 'nofollow' from the cancel comment reply link ('.cancel-comment-reply-link'). */ function my_remove_nofollow_cancel_link( $formatted_link, $link, $text ) { // The cancel link typically uses double quotes for rel="nofollow" return str_replace( 'rel="nofollow"', '', $formatted_link ); } add_filter( 'cancel_comment_reply_link', 'my_remove_nofollow_cancel_link', 10, 3 );/** * Remove 'nofollow' from the comment reply link ('.comment-reply-link'). */ function my_remove_nofollow_reply_link( $link, $args, $comment, $post ) { // The comment reply link can use single quotes for rel='nofollow' return str_replace( "rel='nofollow'", '', $link ); } add_filter( 'comment_reply_link', 'my_remove_nofollow_reply_link', 100, 4 );