/** * Contains all framework specific functions that are not part of a separate class * * @author ThemeFusion * @copyright (c) Copyright by ThemeFusion * @link https://avada.com * @package Avada * @subpackage Core * @since 1.0 */ // Do not allow directly accessing this file. if ( ! defined( 'ABSPATH' ) ) { exit( 'Direct script access denied.' ); } if ( ! function_exists( 'fusion_get_related_posts' ) ) { /** * Get related posts by category * * @param integer $post_id Current post id. * @param integer $number_posts Number of posts to fetch. * @return object Object with posts info. */ function fusion_get_related_posts( $post_id, $number_posts = -1 ) { $args = ''; $number_posts = (int) $number_posts; if ( 0 === $number_posts ) { $query = new WP_Query(); return $query; } $args = wp_parse_args( $args, apply_filters( 'fusion_related_posts_query_args', array( 'category__in' => wp_get_post_categories( $post_id ), 'ignore_sticky_posts' => 0, 'posts_per_page' => $number_posts, 'post__not_in' => array( $post_id ), ) ) ); // If placeholder images are disabled, // add the _thumbnail_id meta key to the query to only retrieve posts with featured images. if ( ! Avada()->settings->get( 'featured_image_placeholder' ) ) { $args['meta_key'] = '_thumbnail_id'; // phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_meta_key } return fusion_cached_query( $args ); } } if ( ! function_exists( 'fusion_get_custom_posttype_related_posts' ) ) { /** * Get related posts by a custom post type category taxonomy. * * @param integer $post_id Current post id. * @param integer $number_posts Number of posts to fetch. * @param string $post_type The custom post type that should be used. * @return object Object with posts info. */ function fusion_get_custom_posttype_related_posts( $post_id, $number_posts = 8, $post_type = 'avada_portfolio' ) { $query = new WP_Query(); $args = ''; $number_posts = (int) $number_posts; if ( 0 === $number_posts || ! $number_posts ) { return $query; } $post_type = str_replace( 'avada_', '', $post_type ); $item_cats = get_the_terms( $post_id, $post_type . '_category' ); $item_array = array(); if ( $item_cats ) { foreach ( $item_cats as $item_cat ) { $item_array[] = $item_cat->term_id; } } if ( ! empty( $item_array ) ) { $args = wp_parse_args( $args, array( 'ignore_sticky_posts' => 0, 'posts_per_page' => $number_posts, 'post__not_in' => array( $post_id ), 'post_type' => 'avada_' . $post_type, 'tax_query' => array( // phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_tax_query array( 'field' => 'id', 'taxonomy' => $post_type . '_category', 'terms' => $item_array, ), ), ) ); // If placeholder images are disabled, add the _thumbnail_id meta key to the query to only retrieve posts with featured images. if ( ! Avada()->settings->get( 'featured_image_placeholder' ) ) { $args['meta_key'] = '_thumbnail_id'; // phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_meta_key } $query = fusion_cached_query( apply_filters( 'fusion_related_posts_args', $args ) ); } return $query; } } if ( ! function_exists( 'fusion_attr' ) ) { /** * Function to apply attributes to HTML tags. * Devs can override attr in a child theme by using the correct slug * * @param string $slug Slug to refer to the HTML tag. * @param array $attributes Attributes for HTML tag. * @return string Attributes in attr='value' format. */ function fusion_attr( $slug, $attributes = array() ) { $out = ''; $attr = apply_filters( "fusion_attr_{$slug}", $attributes ); if ( empty( $attr ) ) { $attr['class'] = $slug; } foreach ( $attr as $name => $value ) { $out .= ' ' . esc_html( $name ); if ( ! empty( $value ) ) { $out .= '="' . esc_attr( $value ) . '"'; } } return trim( $out ); } } if ( ! function_exists( 'fusion_breadcrumbs' ) ) { /** * Render the breadcrumbs with help of class-breadcrumbs.php. * * @return void */ function fusion_breadcrumbs() { $breadcrumbs = Fusion_Breadcrumbs::get_instance(); $breadcrumbs->get_breadcrumbs(); } } if ( ! function_exists( 'fusion_strip_unit' ) ) { /** * Strips the unit from a given value. * * @param string $value The value with or without unit. * @param string $unit_to_strip The unit to be stripped. * @return string the value without a unit. */ function fusion_strip_unit( $value, $unit_to_strip = 'px' ) { $value_length = strlen( $value ); $unit_length = strlen( $unit_to_strip ); if ( $value_length > $unit_length && 0 === substr_compare( $value, $unit_to_strip, $unit_length * ( -1 ), $unit_length ) ) { return substr( $value, 0, $value_length - $unit_length ); } else { return $value; } } } add_filter( 'feed_link', 'fusion_feed_link', 1, 2 ); if ( ! function_exists( 'fusion_feed_link' ) ) { /** * Replace default WP RSS feed link with global option RSS feed link. * * @param string $output Feed link. * @param string $feed Feed type. * @return string Return modified feed link. */ function fusion_feed_link( $output, $feed ) { if ( Avada()->settings->get( 'rss_link' ) ) { $feed_url = Avada()->settings->get( 'rss_link' ); $feed_array = array( 'rss' => $feed_url, 'rss2' => $feed_url, 'atom' => $feed_url, 'rdf' => $feed_url, 'comments_rss2' => '', ); $feed_array[ $feed ] = $feed_url; $output = $feed_array[ $feed ]; } return $output; } } add_filter( 'the_excerpt_rss', 'fusion_feed_excerpt' ); if ( ! function_exists( 'fusion_feed_excerpt' ) ) { /** * Modifies feed description, by extracting shortcode contents. * * @since 5.0.4 * @param string $excerpt The post excerpt. * @return string The modified post excerpt. */ function fusion_feed_excerpt( $excerpt ) { $excerpt = wp_strip_all_tags( fusion_get_post_content_excerpt( 55, true ) ); return $excerpt; } } if ( ! function_exists( 'fusion_compress_css' ) ) { /** * Compress CSS * * @param string $minify CSS to compress. * @return string Compressed CSS. */ function fusion_compress_css( $minify ) { // Remove comments. $minify = preg_replace( '!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $minify ); // Remove tabs, spaces, newlines, etc. return str_replace( array( "\r\n", "\r", "\n", "\t", ' ', ' ', ' ' ), '', $minify ); } } if ( ! function_exists( 'fusion_count_widgets' ) ) { /** * Count number of widgets in the widget area. * * @param string $area_id ID of widget area. * @return int Number of widgets. */ function fusion_count_widgets( $area_id ) { global $_wp_sidebars_widgets; if ( empty( $_wp_sidebars_widgets ) ) { $_wp_sidebars_widgets = get_option( 'sidebars_widgets', array() ); // phpcs:ignore WordPress.WP.GlobalVariablesOverride } $sidebars_widgets_count = $_wp_sidebars_widgets; if ( isset( $sidebars_widgets_count[ $area_id ] ) ) { return count( $sidebars_widgets_count[ $area_id ] ); } return 0; } } if ( ! function_exists( 'fusion_import_to_media_library' ) ) { /** * Imports a file to the media library. * * @param string $url The file URL. * @param string $theme_option If we're doing this for a global option, * specify which option that is to properly save the data. */ function fusion_import_to_media_library( $url, $theme_option = '' ) { // Gives us access to the download_url() and wp_handle_sideload() functions. require_once wp_normalize_path( ABSPATH . '/wp-admin/includes/file.php' ); $timeout_seconds = 30; // Download file to temp dir. $temp_file = download_url( $url, $timeout_seconds ); if ( ! is_wp_error( $temp_file ) ) { // Array based on $_FILE as seen in PHP file uploads. $file = array( 'name' => basename( $url ), 'type' => 'image/png', 'tmp_name' => $temp_file, 'error' => 0, 'size' => filesize( $temp_file ), ); $overrides = array( // Tells WordPress to not look for the POST form // fields that would normally be present, default is true, // we downloaded the file from a remote server, so there // will be no form fields. 'test_form' => false, // Setting this to false lets WordPress allow empty files, not recommended. 'test_size' => true, // A properly uploaded file will pass this test. // There should be no reason to override this one. 'test_upload' => true, ); // Move the temporary file into the uploads directory. $results = wp_handle_sideload( $file, $overrides ); if ( ! empty( $results['error'] ) ) { return false; } $attachment = array( 'guid' => $results['url'], 'post_mime_type' => $results['type'], 'post_title' => preg_replace( '/\.[^.]+$/', '', basename( $results['file'] ) ), 'post_content' => '', 'post_status' => 'inherit', ); // Insert the attachment. $attach_id = wp_insert_attachment( $attachment, $results['file'] ); // Make sure that this file is included, as wp_generate_attachment_metadata() depends on it. require_once wp_normalize_path( ABSPATH . '/wp-admin/includes/image.php' ); // Generate the metadata for the attachment, and update the database record. $attach_data = wp_generate_attachment_metadata( $attach_id, $results['file'] ); wp_update_attachment_metadata( $attach_id, $attach_data ); if ( $theme_option ) { Avada()->settings->set( $theme_option, $results['url'] ); } return $attach_id; } return false; } } /* Omit closing PHP tag to avoid "Headers already sent" issues. */ {"id":2,"date":"2018-08-06T08:30:34","date_gmt":"2018-08-06T08:30:34","guid":{"rendered":"http:\/\/52.24.108.25\/?page_id=2"},"modified":"2025-02-13T23:26:30","modified_gmt":"2025-02-13T23:26:30","slug":"sample-page","status":"publish","type":"page","link":"https:\/\/www.jointventuresllc.com\/","title":{"rendered":"Home Page"},"content":{"rendered":"
<\/div>
<\/div><\/div><\/span>

Joint Ventures is a multi-unit owner & operator of The Joint Chiropractic franchise network.<\/p><\/h1><\/span>

<\/div><\/div><\/div>
<\/path>\n\t\t\t\t\t\t\t\t<\/path>\n\t\t\t\t\t\t\t\t<\/path>\n\t\t\t\t\t\t\t\t<\/path>\n\t\t\t\t\t\t\t\t<\/path>\n\t\t\t\t\t\t\t\t<\/path>\n\t\t\t\t\t\t\t\t<\/path>\n\t\t\t\t\t\t\t\t<\/path>\n\t\t\t\t\t\t\t\t<\/path>\n\t\t\t\t\t\t\t\t<\/path>\n\t\t\t\t\t\t\t\t<\/path>\n\t\t\t\t\t\t\t\t<\/path>\n\t\t\t\t\t\t\t\t<\/path>\n\t\t\t\t\t\t\t\t<\/path>\n\t\t\t\t\t\t\t\t<\/path>\n\t\t\t\t\t\t\t\t<\/path>\n\t\t\t\t\t\t\t\t<\/path>\n\t\t\t\t\t\t\t\t<\/path>\n\t\t\t\t\t\t\t\t<\/path>\n\t\t\t\t\t\t\t\t<\/path>\n\t\t\t\t\t\t\t\t<\/path><\/svg><\/div>
<\/div><\/div><\/div>
<\/i>0<\/span> Locations in 5 States<\/span><\/div>
<\/div><\/div><\/div>
<\/i>0<\/span>+ Happy Patients<\/span><\/div>
<\/div><\/div><\/div>
<\/i>0<\/span>+ Monthly Adjustments<\/span><\/div>
<\/div><\/div><\/div><\/div>
<\/div>\u00a0<\/span>
<\/i><\/div>
<\/div><\/div><\/span>

\n

Culture<\/h1>\n<\/div><\/h1><\/span>
<\/div><\/div><\/div>
<\/i><\/div>

Mission<\/h1><\/div>

\u201cOutstanding people have one thing in common: An absolute sense of mission.\u201d \u2013 Zig Ziglar<\/strong><\/em><\/p>\n

The mission of Joint Ventures is to create an environment that nurtures the doctor-patient relationship through trust and patient-centered care. Joint Ventures strives on a daily basis to remove barriers to Chiropractic care by establishing affordability, efficiency, and convenience without diminishing quality for our patients. Joint Ventures seeks to be the leader in The Joint franchise network.<\/p>\n<\/div>

<\/div><\/div><\/div>
<\/i><\/div>

Vision<\/h1><\/div>

\u201cGreat things are done by a series of small things brought together.\u201d \u2013 Vincent Van Gogh<\/strong><\/em><\/p>\n

The vision of Joint Ventures is to provide an opportunity where innovative marketing strategies aligned with patient-centered, quality Chiropractic care create an environment that establishes a strong and long lasting Doctor-patient relationship to the benefit of vitality and wellness. Joint Ventures is a company driven to providing a path for constant growth and advancement for the loyal and committed members of our team.<\/p>\n<\/div>

<\/div><\/div><\/div>
<\/i><\/div>

Values<\/h1><\/div>

\u201c…your values become your destiny.\u201d \u2013 Mahatma Gandhi<\/strong><\/p>\n

<\/i>\u00a0\u00a0We are a Chiropractic organization intensely focused on providing patient-centered care
\n<\/i>\u00a0\u00a0We are a clinical model based on affordability, convenience and efficiency with no loss of quality
\n<\/i>\u00a0\u00a0We provide individual attention for our patients in a teamwork environment
\n<\/i>\u00a0\u00a0We provide the highest level of customer service at all times in all situations
\n<\/i>\u00a0\u00a0We have basic honesty and absolute integrity<\/p>\n<\/div>

<\/div><\/div><\/div><\/div>\u00a0<\/span>
<\/i><\/div>
<\/div><\/div><\/span>

\n

Team<\/h1>\n<\/div><\/h1><\/span>
<\/div><\/div><\/div><\/div><\/div>
<\/div><\/div><\/div>
\"Dr.<\/div><\/div>
Dr. Kris Birkeland<\/span>President<\/span><\/div><\/div>
Dr. Kris Birkeland completed his Doctorate of Chiropractic at Palmer College of Chiropractic West in 2009. He received the honors of Class Valedictorian, Clinic Excellence Award Recipient, Pi Tau Delta International Chiropractic Honor Society Member, President of Palmer West Sports Council and National Student Liaison to American Chiropractic Association Sports Council.<\/p>\n

Upon Arizona State Licensure, he opened his own Chiropractic Sports clinic. With the background of private practice and small business ownership, Dr. Kris is excited to bring his energy, leadership and innovative ideas to the position of President at Joint Ventures, LLC.<\/p>\n

Dr. Kris is married to his lovely wife Coltlee and they have two beautiful children, Sophie and Jacob. He enjoys the outdoors, music and endurance sports. Dr. Kris currently lives in central Phoenix with his family.<\/div><\/div><\/div>

<\/div><\/div><\/div>
\"Tiffany<\/div><\/div>
Tiffany Motsinger<\/span>Vice President of Operations<\/span><\/div><\/div>
Tiffany Motsinger has been with Joint Ventures since it initiated in July of 2012. Prior to her employment with Joint Ventures, she worked for multiple national investment firms that gave her a widespread background in operations, accounting, asset management and business development at the executive level.<\/p>\n

One of her greatest accomplishments with Joint Ventures was assisting in the development of 24 The Joint clinics in just 20 months\u2019 time in five states. Although her academic achievements have always been focused on accounting and finance, her true passion is leadership and logistics, which has led her to the operations position.<\/p>\n

Tiffany grew up in Lincoln, California, and moved to Reno in 2008. She and her husband have two good-looking boys, Jorden Jr. and Parker, and two striking French bulldogs, Olive & Lincoln. In her spare time, Tiffany enjoys making forts with her boys, outdoors, cooking, reading and listening to Van Morrison<\/div><\/div><\/div>

<\/div><\/div><\/div>
\"Aviana<\/div><\/div>
Aviana Hernandez<\/span>Regional Operations Director - Nevada<\/span><\/div><\/div>
Aviana has been with Joint Ventures since October of 2014 when she opened our Sparks, NV clinic as a full-time Wellness Coordinator. During this time, she was introduced to the art of healing through chiropractic care in which she now can\u2019t imagine her life without! She has since used her experience to grow within the company; In March of 2016, Aviana was promoted to Senior Wellness Coordinator for the Reno, Salt Lake and Las Vegas region. Most recently, in April of 2019, Aviana was offered the privilege to expand her skills as a Regional Operations Director.
\nBeyond chiropractic, Aviana also has a passion for animals (especially dogs), concerts, family time and binge watching her favorite TV shows. She is continuously amazed at the impact Joint Ventures and The Joint Chiropractic has had on our communities year after year and is excited to be a part of such a wonderful mission. <\/div><\/div><\/div>
<\/div><\/div><\/div>
\"Vickie<\/div><\/div>
Vickie Lampedecchio<\/span>Regional Operations Director - Sacramento Region<\/span><\/div><\/div>
Vickie graduated vocational college and obtained her CA Pharmacy Technician certification while working 4 years at an Indian Casino. After school, she knew being in a pharmacy was not the right fit and grew tired of the casino industry. She wanted to start her career path on something other than addiction. Shortly after moving to Roseville, CA in 2015 she was employed as a Wellness Coordinator at The Joint \u2013 Nugget Plaza. During that time, she learned the art of healing in a holistic way while still being in the medical field. As her passion grew in the clinic, so did her motivation for the company. In May 2016, she was promoted to the operations team as the Senior Wellness Coordinator for Sacramento. Working towards success in a fast growing company – in April 2019 she got promoted to Regional Operations Director. Vickie truly enjoys executing The Joint’s mission everyday – the mission to improve quality of life through routine and affordable chiropractic care.<\/p>\n

Vickie has a passion for independent short term evangelical missions. She has served by building houses and volunteering at Hogar Para Ninos, an orphanage in Vicente Guerrero, Mexico.<\/p>\n

In her spare time she likes to relax at home watching crime shows, rooting on her favorite local sports teams: Sacramento Kings and San Francisco Giants and enjoys spending time with her family. She and her husband, Nick, welcomed their first child into the world this year. (On leap year day!)<\/div><\/div><\/div>

<\/div><\/div><\/div>
\"Daleela<\/div><\/div>
Daleela Wolfert<\/span>Regional Operations Manager - Sacramento Region<\/span><\/div><\/div>
Daleela has been with Joint Ventures since January 2018. Prior to her employment with Joint Ventures, she worked in the Fine Jewelry industry for 13 years. Although she enjoyed those years, she needed something more fulfilling. With her management background and love for taking care of people she knew Joint Ventures was something that she had always been searching for.<\/p>\n

Daleela started out as a Wellness Coordinator in the Sacramento region. She only wanted a part time position originally but quickly fell in love with Joint Ventures because of their Culture and Vision. In May 2018 she opened the Natomas clinic which was one of the fastest growing clinics in JV history. Soon after, in July 2018 she was promoted to Senior Wellness Coordinator in the Sacramento region. Daleela continued to grow in her position and assisted with 4 more clinic openings. In April 2020 she was promoted to Regional Operations Manager and continues falling in love with what The Joint does. Chiropractic care has really changed her life and will always be a part of it.<\/p>\n

On a personal note, Daleela is married to her best friend, Duke. They\u2019ve been married for 15 years and they have 3 beautiful daughters, Mikayla, Makenna, and Mila. When not working, she loves being with her family and enjoys the small things like dining out, crafts with the kids, and gardening. <\/div><\/div><\/div>

<\/div><\/div><\/div>
\"Kirstie<\/div><\/div>
Kirstie Edwards<\/span>Employee Experience Manager<\/span><\/div><\/div>
Kirstie Edwards is a small-town Tennessee girl, who moved to Utah in December 2017. She began working with Joint Ventures and earned her role as Regional Operations Manager of Utah. After needing to move to Texas to be with her husband, who works on airplanes on laughlin AFB, she happily excepted a remote position as Employee Experience Manager. During her time of working for Joint Ventures, Kirstie has seen first-hand the importance of Chiropractic care and is now a true believer of its process. She quickly showed her potential by bringing her southern charm and passion for Chiropractic Wellness.
\nKirstie has the support of her amazing husband, Cody and five beautiful children Caiden, Teigun, Mason, Davis, and Enarah. She loves hiking, photography, and anything that includes her family.<\/div><\/div><\/div>
<\/div><\/div><\/div>
\"Bandana<\/div><\/div>
Bandana Rai<\/span>Regional Operations Manager - Bay Area Region<\/span><\/div><\/div>
Bandana comes from the birthplace of Buddha and land of majestic Himalayas including World\u2019s Highest Mountain Mt. Everest, Nepal. She started with Joint Ventures as part-time Wellness Coordinator in February 2016. She was promoted to a Full-time position shortly after her hire. She loves the Joint Ventures culture and passionately believes in The Joint mission. Bandana serves as Regional Operations Manager for Bay Area Region.<\/p>\n

Bandana loves video chatting with her family back in Nepal, especially her 4 years old niece. In her leisure time she likes to hike, read, watch documentaries, and spend time with her friends.<\/div><\/div><\/div>

<\/div><\/div><\/div>
\"Dr.<\/div><\/div>
Dr. Paul Bolton<\/span>Regional Clinic Director - Bay Area Region<\/span><\/div><\/div>
Dr. Paul Bolton has practiced in Kansas City, Denver, San Diego, and now here in San Jose. His expertise includes teaching at a number of colleges, a contributing editor for McGraw-Hill textbooks, training as a Chiropractic Sports Practitioner, Chiropractor to the US Men’s Field Hockey Team, and he has been published in The American Journal of Chiropractic. While at The Joint, in San Diego, Dr. Bolton was awarded an annual \u201cTop Doctor\u201d award by The Joint Corporation.
\nAs a graduate of Cleveland Chiropractic University in Kansas City, Dr. Bolton has enjoyed introducing thousands of patients to the many benefits of regular chiropractic care. Having been a lifelong sports enthusiast and participant Dr. Bolton understands the unique demands that high-intensity athletic endeavors can bring, and how Chiropractic can enhance performance – he has 9 master\u2019s swimming gold medals to prove it!<\/div><\/div><\/div>
<\/div><\/div><\/div>
\"Dr.<\/div><\/div>
Dr. Spencer Henderson<\/span>Regional Clinic Director - Salt Lake, Utah Area<\/span><\/div><\/div>
Dr. Henderson is an advocate of a healthy life. Chiropractic is the way that he feels that he can help people to regain their health and to be able to live their best. He attended Boise State University for his undergraduate and then off to St. Louis Missouri to go to Logan College of Chiropractic. He has practiced in both Idaho and Utah.<\/p>\n

Dr. Henderson wants everyone to live the best life that they can. This applies to everyone of every age. He specializes in chiropractic pediatrics and pregnancy. The way to a healthy life is following the path as a family. That is why he advocates for families to get care and to regain their health together. He believes that being adjusted on a regular basis helps to keep the nervous system functioning. This allows for the body to heal and for you to Live Your Best Life!<\/p>\n

Family is an important part of Dr. Henderson\u2019s life. He is married and has with his wife 3 girls and 2 boys. He enjoys time with his family, whether it be hanging out at home or out in the community. Whatever stage in life you are at, Dr. Henderson is willing to work with you to help you regain your health.<\/div><\/div><\/div>

<\/div><\/div><\/div>
\"Sarah<\/div><\/div>
Sarah Casper<\/span>Regional Operations Manager - Salt Lake, Utah Area<\/span><\/div><\/div>
After graduating from Utah Valley University with a degree in Science in Exercise Science, Sarah found her passion for health and wellness and enjoys helping others obtain a healthy lifestyle. Prior to joining The Joint Chiropractic as a WC in 2021, she spent 25 years in nonprofit and philanthropy work helping to organize and run celebrity charity golf tournaments in both Utah and California. These events helped to raise millions of dollars for youth programs across the globe.<\/p>\n

Sarah was born in Utah but soon moved to San Diego as a young child. She spent 20 years enjoying the city life but with a growing family in 2003 she realized the mountains of Utah were home. She now resides in Utah County with her family and very large extended family.<\/p>\n

Sarah lives by the motto Work Hard, Play Harder. She enjoys spending time with her amazing children, is a self-proclaimed foodie, loves to travel, lives for spontaneous trips to Disneyland and a die-hard sports fan with an emphasis in watching golf.<\/div><\/div><\/div>

<\/div><\/div><\/div>
\"Ashley<\/div><\/div>
Ashley Kersey<\/span>Regional Operations Manager - Pacific Northwest<\/span><\/div><\/div>
Ashley Kersey graduated from Portland State University in 2009 with a Bachelors of Science. Upon graduation she immediately started with a local non profit, Vermont Hills Family Life Center, and for the past 10 years has been providing managerial, human resources, and public relations support to this great cause she believes in. Now she is excited to bring her experience and energy to the Joint Chiropractic team to help improve patient\u2019s quality of life. Ashley is passionate about animals having fostered kittens and also aquatics. She lives in Portland with her partner Michael, two cats, two axolotls, and 5 fish tanks with various betas and shrimp. In her off time, Ashley is currently restoring a 1969 VW Beetle with Michael.<\/div><\/div><\/div>
<\/div><\/div><\/div>
\"Dr.<\/div><\/div>
Dr. Linda Gianetti<\/span>Regional Clinic Director - Pacific Northwest<\/span><\/div><\/div>
Dr. Linda Gianetti has been a chiropractor for over 25 years. She was in private practice for 22 years in Tampa and Ft. Myers, Florida. She has been with The Joint for 5 years where she was Clinic Director in Southwest Florida. She was named \u201cChiropractor of the Year 2023\u201d by The Joint Corporation.<\/p>\n

She earned her Doctor of Chiropractic degree from NYCC, New York Chiropractic College. She was born and raised in the Metropolitan New York area.<\/p>\n

She utilizes full spine diversified adjusting, extremity adjusting, as well as Activator, and drop technique.<\/p>\n

She started getting adjusted at 10 years old and believes it has attributed to her overall spinal health. She is excited to meet with patients and explain what regular chiropractic care can do for them to improve their health and keep them doing the activities they love. She strives to deliver excellence in quality healthcare allowing the doctor\/ patient relationship to flourish. Her philosophy is very straightforward and practical. It is in harmony with The Joint
\nMission- To improve the quality of life through routine and affordable chiropractic care.<\/p>\n

She moved to the Pacific Northwest with her fantastic husband Jeff. They look forward to exploring the Pacific Northwest and all it has to offer. They enjoy traveling and making memories. They renewed their wedding vows in Sicily in 2023.<\/div><\/div><\/div>

<\/div><\/div><\/div>
\"Alanna<\/div><\/div>
Alanna Williams<\/span>DC Talent Recruiter<\/span><\/div><\/div>
Alanna Williams, joined the leadership team at Joint Ventures in October 2021 as our first ever in-house Talent Recruiter. Alanna received her Bachelor\u2019s of Science in Business Management from Sonoma State University with a focus in Human Resources. Before joining the JV team she worked in HR for six years before transitioning into the recruitment field. Finding the right talent and helping people grow in a field they are passionate about is her passion.<\/p>\n

Alanna is an avid snowboarder and you can find her on the slopes of Tahoe\u2019s best ski resorts each winter. During the summer months she loves to stay active and enjoys tending to her garden. Alanna currently lives in the beautiful wine country of Sonoma County.<\/div><\/div><\/div>

<\/div><\/div><\/div>
\"Jennifer<\/div><\/div>
Jennifer Jones<\/span>Clinic Facilities Associate<\/span><\/div><\/div>
Jenny was born and raised in the Reno, NV area where she and her fianc\u00e9 are raising their two children. Jenny graduated from The University of Nevada, Reno with a bachelor\u2019s degree in General Studies. She spent 12 years working in finance for a local non-profit that helped at risk families. Looking for a change and a challenge, she has taken her skills to be part of Joint Ventures\u2019 mission to provide routine and affordable chiropractic care to as many people as possible. In the year she has been with the company she has had the privilege to witness and experience the positive and nurturing culture that Joint Ventures is centered on.<\/p>\n

In her spare time, Jenny enjoys walks, reading, learning and playing with her kids and dogs. When they are not working on remodeling their home, Jenny and her family all enjoy the outdoors, especially camping, riding ATV\u2019s and spending time at the lake.<\/div><\/div><\/div>

<\/div><\/div><\/div>
\"Julie<\/div><\/div>
Julie DiNapoli<\/span>Director of Accounting & Finance<\/span><\/div><\/div>
Julie DiNapoli has been with Joint Ventures since August 2022. Originally from Albany, New York, Julie holds a bachelor\u2019s degree in Finance from Providence College in Providence, Rhode Island. After graduating from college, she embarked on a 3,000 mile road trip with 2 friends from Lake George, NY and headed straight to Incline Village, NV (located on the north shore of Lake Tahoe).<\/p>\n

Julie clearly remembers calling her mom from a pay phone in Lake Tahoe and telling her that she\u2019d “never be coming home”! 28 years later, she and her husband of almost 25 years, Jason, still call Northern Nevada their home. Julie and Jason have 3 incredible children (Taylor, Colby and Drew), along with 3 springer spaniels and 3 cats. They also co-own 2 restaurants in Reno.<\/p>\n

Julie\u2019s background is mostly in cash management, finance, and investments. She has held 2 Director of Operations positions in the past and has held series 6 (and 63) and 65 FINRA licenses as well.<\/p>\n

When Julie is not working, she can be found walking her dogs (they are relentless and expect a 4 mile walk each morning!), photographing her children\u2019s sports, hiking Lake Tahoe, or boating with her family. She also loves to travel.<\/p>\n

Fun Fact: Julie has been a patient of the Joint Ventures clinics since the first clinic opened in Reno. Her first introduction to chiropractic care was when she used to visit the chiropractor with her grandmother in New York in the 1980s!<\/div><\/div><\/div>

<\/div><\/div><\/div>
\"Christy<\/div><\/div>
Christy Meyer<\/span>Digital Lead Associate<\/span><\/div><\/div>
Christy Meyer is our Digital Lead Associate at Joint Ventures. She grew up in Arvada, Colorado and earned her Business Management and Human Resources degree from Metropolitan State University of Denver in 2011. She has been in Human Resources and owned a practice in Boulder with her husband Dr. Kevin. Christy and her husband moved to Arizona in 2020 and enjoy visiting wineries and spending time with their two adorable dogs, Brewtus and Brody. <\/div><\/div><\/div>
<\/div><\/div><\/div>
\"Jacque<\/div><\/div>
Jacque Birkeland<\/span>Marketing Director<\/span><\/div><\/div>
Jacque Birkeland earned her Bachelor of Science in Information Technology with a Concentration in Multimedia and Visual Communications in 2012. She began working with multiple brands at Advertising Agencies and became enthusiastic about helping people improve their health and wellness. She joined Joint Ventures in 2015 and has a passion for sharing our culture through Digital Marketing and Social Media. She enjoys expressing her creative side through Graphic Design and developing engaging content.<\/p>\n

Jacque and her husband, Jon, live in Arizona with their dog, Ruca. They love being outdoors, camping, traveling and collecting eggs from their chickens. <\/div><\/div><\/div>

<\/div><\/div><\/div>
\"John<\/div><\/div>
John Reynolds<\/span>Board Liaison - Marketing\/Tech Advisor<\/span><\/div><\/div>
<\/div><\/div><\/div>
<\/div><\/div><\/div>
\"Chris<\/div><\/div>
Chris O'Neal<\/span>Board Liaison<\/span><\/div><\/div>
Chris lives in Reno, NV with his wife, Shannon and their two children, Talley & Maverick.<\/div><\/div><\/div>
<\/div><\/div><\/div>
\u00a0<\/span>
<\/i><\/div>
<\/div><\/div><\/span>

\n

Footprint<\/h1>\n<\/div><\/h1><\/span>
<\/div><\/div><\/div>\t\t\t\t\t