/* * This theme styles the visual editor to resemble the theme style, * specifically font, colors, icons, and column width. */ /** * Dahlia Dowler functions and definitions * * @link https://developer.wordpress.org/themes/basics/theme-functions/ * * @package Dahlia_Dowler */ if ( ! function_exists( 'dahlia_dowler_setup' ) ) : /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_setup_theme hook, which * runs before the init hook. The init hook is too late for some features, such * as indicating support for post thumbnails. */ function dahlia_dowler_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on Dahlia Dowler, use a find and replace * to change 'dahlia-dowler' to the name of your theme in all the template files. */ load_theme_textdomain( 'dahlia-dowler', get_template_directory() . '/languages' ); // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); /* * Let WordPress manage the document title. * By adding theme support, we declare that this theme does not use a * hard-coded tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * Enable support for Post Thumbnails on posts and pages. * * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/ */ add_theme_support( 'post-thumbnails' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'mobile_menu' => esc_html__( 'Mobile menu', 'dahlia-dowler' ), 'primary_left_menu' => esc_html__( 'Primary left menu', 'dahlia-dowler' ), 'primary_right_menu' => esc_html__( 'Primary right menu', 'dahlia-dowler' ), 'footer_left_menu' => esc_html__( 'Footer left menu (Explore)', 'dahlia-dowler' ), 'footer_centre_menu' => esc_html__( 'Footer centre menu (Sessions)', 'dahlia-dowler' ), 'footer_right_menu' => esc_html__( 'Footer right menu (Company)', 'dahlia-dowler' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'dahlia_dowler_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); /** * Add support for core custom logo. * * @link https://codex.wordpress.org/Theme_Logo */ add_theme_support( 'custom-logo', array( 'height' => 250, 'width' => 250, 'flex-width' => true, 'flex-height' => true, ) ); /** * Initialises the latest post shortcode * */ function dahlia_dowler_register_shortcodes() { add_shortcode( 'dahlia-dowler', 'dahlia_dowler_do_shortcodes' ); } /** * Finds and replaces shortcodes to output the main plugin functionality: a latest posts shortcode. * While this is used by WP's Shortcode API, one can use this on their own manually without do_shortcode(). * * Simply call the function which prints out the content. Optionally you can pass in an associative array * instead of using shortcode attributes. * * @param array $atts Optional. Shortcode attributes are passed in as an associative array here, e.g: * $atts = array( * "title" => "Latest Posts" // Optional string, defaults to Latest Posts. * "limit" => 3 // Optional int, defaults to 3 posts. * ) * @return string $posts_list Returns the content generated by dahlia_dowler_get_posts() according to the passed in parameters. * */ function dahlia_dowler_do_shortcodes( $atts ) { // Get attributes from passed in array if they exist $limit = ! empty( $atts["limit"] ) ? $atts["limit"] : false; $title = ! empty( $atts["title"] ) ? $atts["title"] : false; // Get the posts and return them $posts_list = dahlia_dowler_get_posts( $title, $limit ); return $posts_list; } dahlia_dowler_register_shortcodes(); /** * The latest posts list is generated here. The returned HTML is put together in PHP because of preference, and since the HTML * generated here is relatively simple, we won't lose out on much of the benefits of HTML colour coding or hinting in your favourite editor. * * @param string $title Optional string to title the collection of posts, defaults to "Latest Posts". * @param int $limit Optional integer used to limit the number of posts returned, defaults to 3. * @return string $posts The posts are taken from the loop according to any parameters passed in and returned as an HTML string. */ function dahlia_dowler_get_posts( $title = false, $limit = false ) { // If a title was included, use it, or use Latest Posts. This could be stored in a default options function instead. $title = ! empty( $title ) ? $title : false; // If a number greater than 0 was included, use it, otherwise default to 3. This number could instead be stored in a default options function that can be used in place of user specified options retrieved from get_option() $limit = intval( $limit ) > 0 ? intval( $limit ) : 3; // Prepare input array for wp_get_recent_posts() $args = array( "numberposts" => $limit ); // Get the posts as an array of objects $posts_array = wp_get_recent_posts( $args, "OBJECT" ); // Start with the post container and the title, then we loop through each post adding markup to the $posts variable $posts = "<div class='dahlia-dowler-latest-posts-container flex-row flex-center-center full box-shadow'>"; if ( $title ) $posts .= "<h5 class='dahlia-dowler-latest-posts-title'>" . $title . "</h5>"; foreach ( $posts_array as $post ) { // Get the permalink for this post, or if for some reason it doesn't exist, the home url $permalink = get_permalink( $post ) ? get_permalink( $post ) : home_url(); // Get the posts thumbnail image url and widths and heights if they exist, or use a placeholder from the web at 300x200 pixels which is the default WordPress medium image size $post_image = ! empty( wp_get_attachment_image_src( get_post_thumbnail_id( $post ), "medium" ) ) ? wp_get_attachment_image_src( get_post_thumbnail_id( $post ), "medium" ) : false; $image = ! empty( $post_image ) ? $post_image[0] : "https://via.placeholder.com/300x200"; $image_width = ! empty( $post_image ) ? $post_image[1] : 300; $image_height = ! empty( $post_image ) ? $post_image[2] : 200; // Then for each post object in the post array, we create a subcontainer with the class dahlia-dowler-single-post $posts .= "<a href='$permalink' class='dahlia-dowler-latest-posts-single-post' style='background-image:url($image);width:calc( 100% / $limit );'>"; // Scrim, a dark element allowing text above it to be legible over any imagery underneath $posts .= "<div class='scrim flex-row flex-start-end padding'>"; // We'll start with the title $posts .= "<h6>"; // Now we want to manually truncate the title if it's longer than 50 characters. This is a great candidate for inclusion as a modifiable attribute, or as a settings field. Otherwise, we could do this via CSS or JavaScript, with either being able to easily truncate depending on the number of lines output. $maximum_title_length = 50; // If the title length is longer than the maximum length, we truncate it from characters 0 to $maximum_title_length and add three ellipses to the end, otherwise we just use the given title. $short_title = strlen( $post->post_title ) > $maximum_title_length ? substr( $post->post_title, 0, $maximum_title_length ) . "..." : $post->post_title; // Enter the title and close its tag. $posts .= $short_title . "</h6>"; // Close the content container tag $posts .= "</div>"; // Close the anchor tag $posts .= "</a>"; } // Close the widget tag and return the HTML string $posts .= "</div>"; return $posts; } } endif; add_action( 'after_setup_theme', 'dahlia_dowler_setup' ); /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width */ function dahlia_dowler_content_width() { // This variable is intended to be overruled from themes. // Open WPCS issue: {@link https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/issues/1043}. // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound $GLOBALS['content_width'] = apply_filters( 'dahlia_dowler_content_width', 640 ); } add_action( 'after_setup_theme', 'dahlia_dowler_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function dahlia_dowler_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'dahlia-dowler' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Add widgets here.', 'dahlia-dowler' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); } add_action( 'widgets_init', 'dahlia_dowler_widgets_init' ); /** * Enqueue scripts and styles. */ function dahlia_dowler_scripts() { wp_enqueue_style( 'dahlia-dowler-style', get_stylesheet_uri() ); //wp_enqueue_script( 'dahlia-dowler-navigation', get_template_directory_uri() . '/js/navigation.js', array(), '20151215', true ); wp_enqueue_script( 'dahlia-dowler-script', get_template_directory_uri() . '/js/script.js', array( 'jquery' ), '20151215', true ); wp_enqueue_script( 'dahlia-dowler-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20151215', true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'dahlia_dowler_scripts' ); /** * Include Advanced Custom Fields (ACF) */ require get_template_directory() . '/inc/class-acf.php'; /** * Implement the Custom Header feature. */ require get_template_directory() . '/inc/custom-header.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/template-tags.php'; /** * Functions which enhance the theme by hooking into WordPress. */ require get_template_directory() . '/inc/template-functions.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; /** * Load Jetpack compatibility file. */ if ( defined( 'JETPACK__VERSION' ) ) { require get_template_directory() . '/inc/jetpack.php'; } <!doctype html> <html lang="en-GB"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="https://gmpg.org/xfn/11"> <link rel='dns-prefetch' href='//s.w.org' /> <script type="text/javascript"> window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.0\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/dahliadowler.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.5.15"}}; !function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode;p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(!p||!p.fillText)return!1;switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([55357,56424,8205,55356,57212],[55357,56424,8203,55356,57212])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(n=t.source||{}).concatemoji?c(n.concatemoji):n.wpemoji&&n.twemoji&&(c(n.twemoji),c(n.wpemoji)))}(window,document,window._wpemojiSettings); </script> <style type="text/css"> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 .07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='wp-block-library-css' href='https://dahliadowler.com/wp-includes/css/dist/block-library/style.min.css?ver=5.5.15' type='text/css' media='all' /> <link rel='stylesheet' id='contact-form-7-css' href='https://dahliadowler.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=5.2.1' type='text/css' media='all' /> <script type='text/javascript' src='https://dahliadowler.com/wp-includes/js/jquery/jquery.js?ver=1.12.4-wp' id='jquery-core-js'></script> <link rel="https://api.w.org/" href="https://dahliadowler.com/wp-json/" /><link rel="alternate" type="application/json" href="https://dahliadowler.com/wp-json/wp/v2/pages/182" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://dahliadowler.com/xmlrpc.php?rsd" /> <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://dahliadowler.com/wp-includes/wlwmanifest.xml" /> <meta name="generator" content="WordPress 5.5.15" /> <link rel="canonical" href="https://dahliadowler.com/faq/" /> <link rel='shortlink' href='https://dahliadowler.com/?p=182' /> <link rel="alternate" type="application/json+oembed" href="https://dahliadowler.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fdahliadowler.com%2Ffaq%2F" /> <link rel="alternate" type="text/xml+oembed" href="https://dahliadowler.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fdahliadowler.com%2Ffaq%2F&format=xml" /> <link rel="icon" href="https://dahliadowler.com/wp-content/uploads/2018/08/cropped-Icon-32x32.png" sizes="32x32" /> <link rel="icon" href="https://dahliadowler.com/wp-content/uploads/2018/08/cropped-Icon-192x192.png" sizes="192x192" /> <link rel="apple-touch-icon" href="https://dahliadowler.com/wp-content/uploads/2018/08/cropped-Icon-180x180.png" /> <meta name="msapplication-TileImage" content="https://dahliadowler.com/wp-content/uploads/2018/08/cropped-Icon-270x270.png" /> </head> <body class="page-template page-template-faq-template page-template-faq-template-php page page-id-182"> <div id="page" class="site"> <a class="skip-link screen-reader-text" href="#content">Skip to content</a> <header id="masthead" class="site-header"> <nav id="site-navigation" class="main-navigation wrap flex-row flex-center-center curveb z9"> <!-- Mobile menu --> <div id="mobile-menu-container"> <a href="https://dahliadowler.com" class="custom-logo-link"> <img src="https://dahliadowler.com/wp-content/themes/dahlia-dowler-1.0.4/img/Horizontal-Slim.png" alt="Dahlia Dowler Logo"> </a> <div class="menu-mobile-menu-container"><ul id="menu-mobile-menu" class="menu"><li id="menu-item-624" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-624"><a href="https://dahliadowler.com/">Home</a></li> <li id="menu-item-620" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-620"><a href="https://dahliadowler.com/book-a-session/">Book A Session</a></li> <li id="menu-item-625" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-625"><a href="https://dahliadowler.com/services/">Services</a></li> <li id="menu-item-626" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-626"><a href="https://dahliadowler.com/about/">About</a></li> <li id="menu-item-622" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-182 current_page_item menu-item-622"><a href="https://dahliadowler.com/faq/" aria-current="page">FAQ</a></li> <li id="menu-item-623" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-623"><a href="https://dahliadowler.com/blog/">Blog</a></li> <li id="menu-item-619" class="nmr-logged-out menu-item menu-item-type-post_type menu-item-object-page menu-item-619"><a href="https://dahliadowler.com/login/">Login</a></li> <li id="menu-item-618" class="nmr-logged-out menu-item menu-item-type-post_type menu-item-object-page menu-item-618"><a href="https://dahliadowler.com/register/">Register</a></li> <li id="menu-item-617" class="nmr-logged-out menu-item menu-item-type-post_type menu-item-object-page menu-item-617"><a href="https://dahliadowler.com/forgot-password/">Forgot Password</a></li> <li id="menu-item-627" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-627"><a href="https://dahliadowler.com/contact/">Contact</a></li> </ul></div> <button class="hamburger hamburger--spring" type="button"> <span class="hamburger-box"><span class="hamburger-inner"></span></span> </button> </div> <div class="logo flex-row flex-center-center"> <div class="menu-menu-left-container"><ul id="menu-menu-left" class="menu"><li id="menu-item-588" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-588"><a href="https://dahliadowler.com/">Home</a></li> <li id="menu-item-596" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent menu-item-has-children menu-item-596"><a>Explore</a> <ul class="sub-menu"> <li id="menu-item-605" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-605"><a href="https://dahliadowler.com/services/">Services</a></li> <li id="menu-item-8" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8"><a href="https://dahliadowler.com/about/">About</a></li> <li id="menu-item-77" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-77"><a href="https://dahliadowler.com/blog/">Blog</a></li> <li id="menu-item-564" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-182 current_page_item menu-item-564"><a href="https://dahliadowler.com/faq/" aria-current="page">FAQ</a></li> </ul> </li> <li id="menu-item-9" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9"><a href="https://dahliadowler.com/contact/">Contact</a></li> </ul></div> <a href="https://dahliadowler.com" class="custom-logo-link"> <img src="https://dahliadowler.com/wp-content/themes/dahlia-dowler-1.0.4/img/Vertical.png" alt="Dahlia Dowler Logo"> </a> <div class="menu-menu-right-container"><ul id="menu-menu-right" class="menu"><li id="menu-item-561" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-561"><a href="https://dahliadowler.com/book-a-session/">Book A Session</a></li> <li id="menu-item-562" class="nmr-logged-out menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-562"><a>Account</a> <ul class="sub-menu"> <li id="menu-item-559" class="nmr-logged-out menu-item menu-item-type-post_type menu-item-object-page menu-item-559"><a href="https://dahliadowler.com/login/">Login</a></li> <li id="menu-item-558" class="nmr-logged-out menu-item menu-item-type-post_type menu-item-object-page menu-item-558"><a href="https://dahliadowler.com/register/">Register</a></li> <li id="menu-item-557" class="nmr-logged-out menu-item menu-item-type-post_type menu-item-object-page menu-item-557"><a href="https://dahliadowler.com/forgot-password/">Forgot Password</a></li> </ul> </li> </ul></div> </div> </nav><!-- #site-navigation --> </header><!-- #masthead --> <div id="content" class="site-content"> <div id="primary" class="content-area faq"> <main id="main" class="site-main"> <div class="title curveb flex-column flex-end-center z8"> <div class="text-small full text-center"> <h1>FAQ</h1> </div> </div> <div class="faq-items"> <article class="faq-item card box-shadow full text-left"> <header class="padding flex-row flex-center-center"><h2 class="text-gradient">What is Transformational Coaching?</h2></header> <p class="padding text-center">Transformational Coaching is deep coaching. Normal Life Coaching doesn't delve into the past and personal wounds, choosing to focus more on the present and future - moving you from point A to point B. With Transformational and Transpersonal Coaching, you get a more holistic approach, working with the core of the challenge, healing and integrating it. </p> </article> <article class="faq-item card box-shadow full text-left"> <header class="padding flex-row flex-center-center"><h2 class="text-gradient">How can Transformational Coaching help?</h2></header> <p class="padding text-center">Transformational coaches can help explorers and seekers to untangle the knots which prevent us from moving forward in our lives. A transformational coach is your guide, the lantern which lights your path as you take the journey to self discovery and growth. Coaching can help with any aspect of your life; whether it's personal issues, relationships, phobias, traumas or even performance enhancement.</p> </article> <article class="faq-item card box-shadow full text-left"> <header class="padding flex-row flex-center-center"><h2 class="text-gradient">How long is a session?</h2></header> <p class="padding text-center">A session normally ranges from 60-90 mins.</p> </article> <article class="faq-item card box-shadow full text-left"> <header class="padding flex-row flex-center-center"><h2 class="text-gradient">How many sessions do I need?</h2></header> <p class="padding text-center">It all depends on the challenge or issue you're working on. On average a typical journey ranges between 4-8 sessions, however each case is unique and one may need more or less than the expected range.</p> </article> <article class="faq-item card box-shadow full text-left"> <header class="padding flex-row flex-center-center"><h2 class="text-gradient">Do you offer Online Coaching?</h2></header> <p class="padding text-center">Yes, we now offer online coaching using video conferencing software Zoom. Contact us for more information on how to set up your account and how to set up a conference call.</p> </article> <article class="faq-item card box-shadow full text-left"> <header class="padding flex-row flex-center-center"><h2 class="text-gradient">How can I pay?</h2></header> <p class="padding text-center">For in person coaching, cash is the most convenient payment method. There are plans to set up alternative payment methods. For online coaching, PayPal. Contact us for PayPal payment info.</p> </article> <article class="faq-item card box-shadow full text-left"> <header class="padding flex-row flex-center-center"><h2 class="text-gradient">Do you offer any discounts?</h2></header> <p class="padding text-center">Yes! If you buy a monthly package, you will save 20%</p> </article> <article class="faq-item card box-shadow full text-left"> <header class="padding flex-row flex-center-center"><h2 class="text-gradient">How can I book a session?</h2></header> <p class="padding text-center">You can book using one of our contact methods via the Contact page. You can email us via discover@dahliadowler.com or send a Whatsapp message via 01000591843. We're in the process of setting up an online booking system via the website. Stay tuned!</p> </article> <article class="faq-item card box-shadow full text-left"> <header class="padding flex-row flex-center-center"><h2 class="text-gradient">What is your cancellation policy?</h2></header> <p class="padding text-center">If you need to reschedule or cancel a session you will need to contact us at least 2 hours before the session. If you cancel any point after that, you will be charged for a session.</p> </article> <article class="faq-item card box-shadow full text-left"> <header class="padding flex-row flex-center-center"><h2 class="text-gradient">What about refunds?</h2></header> <p class="padding text-center">Refunds can be requested 48 hours before the next session. Just send us an email with your request.</p> </article> <article class="faq-item card box-shadow full text-left"> <header class="padding flex-row flex-center-center"><h2 class="text-gradient">Are the sessions confidential?</h2></header> <p class="padding text-center">Yes. As other therapists and health care professionals, Coaches also practice confidentiality. Anything you say to your coach stays between you and your coach. Even if faced with a court order, we cannot divulge anything without your approval.</p> </article> <article class="faq-item card box-shadow full text-left"> <header class="padding flex-row flex-center-center"><h2 class="text-gradient">What's the difference between a Psychotherapist and a Coach?</h2></header> <p class="padding text-center">Psychotherapists focus on the why. Talking and digging deep into the wounds are usually the main focus of a psychotherapy session. Coaching allows for movement - change is always possible. For more detailed information check out the post Welcome to NLP Coaching.</p> </article> <article class="faq-item card box-shadow full text-left"> <header class="padding flex-row flex-center-center"><h2 class="text-gradient">Can you prescribe medication?</h2></header> <p class="padding text-center">No. Coaches aren't medical doctors, we're not legally allowed to prescribe medication, nor can we advise you on any medical issues. We can work alongside physical therapy, medical treatment and various other healthcare related treatments.</p> </article> </div> <div class="bar background-gradient box-shadow"><div class="full flex-row padding flex-space-between-center"><p>Book a session now</p><a href="book-a-session" class="animated button light-button">Book A Session</a></div> </main><!-- #main --> </div><!-- #primary --> </div><!-- #content --> <footer id="colophon" class="site-footer"> <div class="curveb z1"> <div class="full flex-row flex-center-center"> <a href="https://dahliadowler.com"> <img src="https://dahliadowler.com/wp-content/themes/dahlia-dowler-1.0.4/img/Vertical-white.png" alt="Dahlia Dowler Logo"> </a> </div> </div> <div class="flex-row flex-wrap full padding"> <div class="menu-footer-left-menu-explore-container"><ul id="menu-footer-left-menu-explore" class="menu"><li id="menu-item-568" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-182 current_page_item menu-item-568"><a href="https://dahliadowler.com/faq/" aria-current="page">FAQ</a></li> <li id="menu-item-569" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-569"><a href="https://dahliadowler.com/blog/">Blog</a></li> <li id="menu-item-570" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-570"><a href="https://dahliadowler.com/services/">Services</a></li> </ul></div><div class="menu-footer-centre-menu-sessions-container"><ul id="menu-footer-centre-menu-sessions" class="menu"><li id="menu-item-573" class="nmr-logged-out menu-item menu-item-type-post_type menu-item-object-page menu-item-573"><a href="https://dahliadowler.com/login/">Login</a></li> <li id="menu-item-572" class="nmr-logged-out menu-item menu-item-type-post_type menu-item-object-page menu-item-572"><a href="https://dahliadowler.com/register/">Register</a></li> <li id="menu-item-571" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-571"><a href="https://dahliadowler.com/book-a-session/">Book A Session</a></li> </ul></div><div class="menu-footer-right-menu-container"><ul id="menu-footer-right-menu" class="menu"><li id="menu-item-585" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-585"><a href="https://dahliadowler.com/">Home</a></li> <li id="menu-item-576" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-576"><a href="https://dahliadowler.com/about/">About</a></li> <li id="menu-item-577" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-577"><a href="https://dahliadowler.com/contact/">Contact</a></li> </ul></div> </div><!-- inner --> <div class="site-info padding"> <div class="full text-center"> Dahlia Dowler © 2024. All Rights Reserved. </div> </div><!-- .site-info --> </footer><!-- #colophon --> </div><!-- #page --> <script type="text/javascript">!function(t,e){"use strict";function n(){if(!a){a=!0;for(var t=0;t<d.length;t++)d[t].fn.call(window,d[t].ctx);d=[]}}function o(){"complete"===document.readyState&&n()}t=t||"docReady",e=e||window;var d=[],a=!1,c=!1;e[t]=function(t,e){return a?void setTimeout(function(){t(e)},1):(d.push({fn:t,ctx:e}),void("complete"===document.readyState||!document.attachEvent&&"interactive"===document.readyState?setTimeout(n,1):c||(document.addEventListener?(document.addEventListener("DOMContentLoaded",n,!1),window.addEventListener("load",n,!1)):(document.attachEvent("onreadystatechange",o),window.attachEvent("onload",n)),c=!0)))}}("wpBruiserDocReady",window); (function(){var wpbrLoader = (function(){var g=document,b=g.createElement('script'),c=g.scripts[0];b.async=1;b.src='https://dahliadowler.com/?gdbc-client=3.1.43-'+(new Date()).getTime();c.parentNode.insertBefore(b,c);});wpBruiserDocReady(wpbrLoader);window.onunload=function(){};window.addEventListener('pageshow',function(event){if(event.persisted){(typeof window.WPBruiserClient==='undefined')?wpbrLoader():window.WPBruiserClient.requestTokens();}},false);})(); </script><script type='text/javascript' src='https://dahliadowler.com/wp-content/plugins/book-a-session-1.0.0/public/js/jquery.waypoints.min.js' id='book_a_session_jquery_waypoints-js'></script> <script type='text/javascript' src='https://dahliadowler.com/wp-content/plugins/book-a-session-1.0.0/public/js/sticky.min.js' id='book_a_session_waypoints_sticky-js'></script> <script type='text/javascript' id='contact-form-7-js-extra'> /* <![CDATA[ */ var wpcf7 = {"apiSettings":{"root":"https:\/\/dahliadowler.com\/wp-json\/contact-form-7\/v1","namespace":"contact-form-7\/v1"}}; /* ]]> */ </script> <script type='text/javascript' src='https://dahliadowler.com/wp-content/plugins/contact-form-7/includes/js/scripts.js?ver=5.2.1' id='contact-form-7-js'></script> <script type='text/javascript' src='https://dahliadowler.com/wp-includes/js/wp-embed.min.js?ver=5.5.15' id='wp-embed-js'></script> </body> </html>